* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

header {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    
}

header img {
    width: 460px;
    height: 200px;
}

body {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background-image: url(./Images/Background.jpg);
    background-image: cover;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}

.login_body {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    z-index: 90;
    width: 450px;
    height: 400px;
    max-width: 1440px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    box-sizing: border-box;
    margin-left: 50%;
    transform: translateX(-50%);
    position: fixed;
}

.login_body h2 {
    font-size: 32px;
    color: white;
    font-weight: bold;
    text-align: center;
    padding-bottom: 20px ;
}

.login_body input {
    height: 50px;
    width: 100%;
    color: white;
    background-color: #333;
    border: none;
    border-radius: 5px;
    padding-left: 15px;
    box-sizing: border-box;
    outline: none;
}

.login_body input:hover {
    background-color: #444;
}

.input_box {
    margin-bottom: 25px;
}

.login_body button {
    height: 50px;
    width: 100%;
    color: white;
    background-color: #FF005E;
    border-radius: 3px;
    font-weight: bold;
    font-size: 16px;
    border: none;
    margin-bottom: 10px;

}

.login_body button:hover {
    background-color: white;
    cursor: pointer;
    color: #FF005E;
}

.support {
    display: flex;
    color: #b3b3b3;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 5px;
}

.support input {
    width: 15px;
    height: 15px;
}

.remember {
    display: flex;
    align-items: center;
}

.remember span {
    font-size: 15px;
    margin-right: 5px;
    height: 25px;
}

.help a {
    text-decoration: none;
    color: #737373;
}

.help a:hover {
    text-decoration: underline;
}

.login_facebook {
    display: flex;
    align-items: center;
    width: 100%;
    color: #737373;
}

.login_facebook span {
    margin-right: 5px;
    font-size: 15px;
}

.login_facebook span a {
    text-decoration: none;
    color: #737373;
}

.login_facebook img {
    cursor: pointer;
}

.sign_up {
    color: #737373;
    font-size: 15px;
    padding-top: 8px;
}

.sign_up a {
    color: white;
    font-size: 16px;
    text-decoration: none;
}

.sign_up a:hover{
    text-decoration: underline;
}

.assign{
    font-family: Courier New, monospace;
    font-size: 13px;
    color: white;
    text-align: right;
    margin-right: 20px;
    margin-top: 80px;

}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}
#copyright {
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding: 10px;
    color: white;
    margin-top: auto;
}

#copyright a {
    color: #E4F05F;
    text-decoration: none;
}
