﻿body {
    background: #c1c0b6 !important; 
    display:flex; 
    align-items:center; 
    justify-content:center; 
}

.containerPrincipal {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

img {
    width: auto;
    height: 80px;
}

.containerForm {
    background-color: #1B1B1B;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 450px;
    padding: 1.5rem;
    position: relative;
}

.containerHeaderLang {
    border-bottom: 1px solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding-bottom: 0.4rem;
    margin-bottom: 1.2rem;
}

h4 {
    font-size: 1.6rem !important;
    margin: 0 !important;
    color: #ffffff;
}

button[type="submit"] {
    background-color: #3366FF;
    border: none;
    border-radius: .5rem;
    padding: .75rem 1rem;
    width: 100%;
    font-size: 1rem;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    margin-top: 0 !important;
}

.form-group {
    margin-bottom: 1.2rem;
}

.text-right {
    text-align: right;
}

#AbpPageAlerts {
    border-bottom: 1px solid;
    padding-bottom: 0.2rem;
}

form {
    margin-top: 1.2rem !important;
}

.dropdown-menu {
    max-height: 500px;
    overflow-y: scroll;
    width: 100%;
}

.buttonsResetPassword {
    display: flex;
    gap: 20px;
}

@media (max-width: 500px) {
    .containerForm {
        width: 300px;
        padding: 1.5rem 1.2rem;
    }

    h4 {
        font-size: 1.4rem !important;
    }

    .dropdown-menu {
        max-height: 400px;
    }

    button[type="submit"] {
        padding: .45rem 1rem;
    }
    
    .ForgotPassword{
        font-size: .81rem;
    }
    
    .containerRemember {
        height: 40px;
    }
    
    img {
        height: 70px;
    }
}