body {
    background-image: url('../Images/login_bg1.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

div.login_header {
    text-align: center;
    margin-bottom: 60px;
}

div.login_header h1 {
    font-size: 100px;
    font-weight: bold;
    color: rgb(255, 0, 0);
    opacity: 80%;
}

div.login_header p {
    color: black;
    font-size: 50px;
    opacity: 75%;
}

div.login_body form {
    margin: 0 auto;
    width: 450px;
    background: rgba(0, 0, 0, .5);
    padding: 50px;
    border: 3px solid rgb(224, 223, 223);
    border-radius: 8px;
}

div.login_input_cont label {
    display: block;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

div.login_input_cont input {
    height: 25px;
    width: 100%;
    border: 2px solid red;
    font-size: 20px;
    padding: 5px;
    font-style: italic;
}

div.login_button_cont {
    margin-top: 35px;
}

div.login_button_cont button {
    font-size: 15px;
    padding: 7px 7px;
    background: red;
    border: none;
    color: white;
    margin-right: 10px;
}


.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal_content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border: 2px solid red;
    border-radius: 8px;
    width: 350px;
    text-align: center;
}

.modal_content h2 {
    color: red;
}

.close {
    color: red;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.signup_input_cont input {
    height: 25px;
    width: 100%;
    border: 2px solid red;
    font-size: 18px;
    padding: 5px;
    margin-top: 10px;
}

.signup_button_cont button {
    margin-top: 20px;
    font-size: 15px;
    padding: 7px 7px;
    background: red;
    border: none;
    color: white;
}