@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

body{
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.login-body{
    padding: 25px;
    background-color: #fdfdfd;
    margin-top: 13%;
    margin-bottom: 13%;
    margin-left: 33%; margin-right: 30%;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    width: 33%;
}
.line{
    border-top: 1px solid #e0e0e0;
    margin-bottom: 25px;
    margin-top: 25px;
    margin-left: 10%; margin-right: 10%;
}
.form-login button{
    background-color: #3e8ed0;
    border: none;
}

.form-login button:hover{
    background-color: #347db9;
    border: none;
}

@media screen and (max-width:1199px){
    h3{
        font-size: 20px !important;
    }
    
}
@media screen and (max-width:992px) {
    .login-body{
        margin-top: 40%;
        margin-bottom: 40%;
        width: 41%;
    }
    .login-body h3{
        font-size: 20px !important;
    }
    body{
        background-size: auto;
    }
}

@media screen and (max-width:767px){
    .login-body{
        margin-top: 40%;
        margin-bottom: 40%;
        margin-left: 25%; margin-right: 27%;
        width: 60%;
    }
    .login-body h3{
        font-size: 16px !important;
    }
}

@media screen and (max-width:576px){
    .login-body{
    }
    h3{
        font-size: 16px !important;
    }
}