body.login {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('../img/bg3.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

body.login::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.login-container {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 400px;
    text-align: center;
    z-index: 2;
}

.login-container p.alcim{
    text-align: center;
    font-size:14px;
    margin-bottom:25px;
}

.login-container p.alcim span{
    font-size:24px;
    font-weight:bold;
}

@media (min-width: 768px) {
    /*
    .login-container {
        margin-left: auto;
        margin-right: 10%;
    }
    */

}

.login-form h1 {
    margin-top:5px;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.form-group-login {
    margin-bottom: 1rem;
    text-align: left;
}

.form-group-login label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: white;
}

.form-group-login input {
    width: 100%;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
}

.form-group-login input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}


.btn-login{
    border: none;
    padding:10px 35px;
    transition: background 0.3s;
}

.btn-primary{
    background: red !important;
    color: white !important;
    border:1px solid red;
    cursor: pointer;
}

.btn-primary:hover {
    background: rgba(255, 0, 0, 0.66) !important;
    color:#FFF !important;
    border:1px solid red;
}

.forgot-password {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: white;
    text-decoration: none;
}

.forgot-password:hover {
    color: red;
    text-decoration: underline;
}

.other_section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}



.other_section a{
    display:block;
    padding:1rem;
    padding-bottom:unset;
}

.reggombcontainer{
    margin-top:25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
}





@media (max-width: 768px) {
    body.login{
        display: flex;
        justify-content: center;
        align-items: start;
        padding-top:30px;
    }
    .other_section{
        flex-wrap: wrap;
    }

    .other_section a{
        padding:0.5rem;
        padding-bottom:5px;
    }

    .login-container {
        padding: 1rem;
        width: 94%;
    }
}
