/* Login Page CSS */

body {
    background-image: url('../img/sample_background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.login-container {
    height: 600px;
    width: 330px;
    background-color: white;
    margin: auto;
    margin-top: 75px;
}

.validation-errors {
    color: red;
    font-weight: bold;
    font-family: arial;
}

.login-text {
    font-family: arial;
    font-weight: bold;
    margin-left: 47px;
    font-size: 14px;
}

.reg-text {
    font-family: arial;
    text-align: center;
    font-size: 12px;
}

.login-input {  
    width: 250px;
    height: 22px;
    display: block;
    margin : 0 auto; 
    margin-top: 10px;
    border-radius: 6px;
    background-color: #f4f4f4;
}

.login-input:focus {
    width: 250px;
    height: 22px;
    display: block;
    margin : 0 auto; 
    margin-top: 10px;
    background-color: white;
}

.login-button {
    font-weight: bold;
    width: 250px;
    height: 30px;
    text-align: center;
    color: white;
    display: block;
    margin : 0 auto;
    background-color: #0A447E; 
}

.login-button:hover {
    background-color: #d5fbff;
    color: black;
}

.login-button:focus {
    background-color: #26c6da;
    color: black;
}

.login-button:disabled {
    background-color: #f4f4f6;
    border-color: #c7c7ce;
    color: #dbdbdb;
}

.copyright {
    font-family: arial;
    padding-left: 40px;
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 12px;
}
.social-media-logo {
    height: 60px;
    width: 60px;
    margin-top: 50px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 50px;
    vertical-align: middle;
}

.social-media-logo-youtube {
    height: 36px;
    width: 36px;
    margin-left: 2px;
    margin-right: 2px;
    margin-top: 50px;
    margin-bottom: 50px;
    vertical-align: middle;
}

.social-media-container {
    text-align: center;
}

.social-media-container a{
    text-decoration: none;
}