.login-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    min-width: 500px;
    text-align: center;
}
.login-head {
    margin-bottom: 20px;
    font: 500 40px/45px "Inter Tight", serif;
    color: #000000;
}
.input-group-div-xxx {
    margin-bottom: 15px;
    text-align: left;
   
}
.input-group-div-xxx label {
    display: block;
    margin-bottom: 12px;
    font: 500 16px/20px "Roboto", serif;
    color: #111;
}
.input-group-div-xxx input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-btn {
    width: 100%;
    padding: 10px;
    background: #287297;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font: 500 18px/20px "Roboto", serif;
}
.login-btn:hover {
    background: #357ABD;
}
.register-link {
    margin-top: 15px;
    font: 500 18px/20px  "Inter Tight", serif;
    color: #7e7e7e;
}
.register-link a {
    color: #4A90E2;
    text-decoration: none;
    font: 500 15px/20px  "Inter Tight", serif;
}
.register-link a:hover {
    text-decoration: underline;
}
.login-container-main{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(to right, #4A90E2, #287297);
}
@media(max-width:576px){
    .login-container {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 450px;
        min-width: 450px;
        text-align: center;
    }
}
@media(max-width:480px){
    .login-container {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        max-width: 380px;
        min-width: 380px;
        text-align: center;
    }
}