@charset "UTF-8";

/*!
 * Version - 1.1.1
 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.
*/
body {
    --bg: #f5f5f7;
    background: var(--bg);
    font-family: var(--ff-source);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-wrapper {
    width: 100%;
    max-width: 460px;
}

.auth-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);
    text-align: center;
}

.logo-circle {
    width: 90px;
    height: 90px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);
}

.auth-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--text);
}

.auth-subtitle {
    color: var(--secondary);
    margin-bottom: 35px;
}

.form-label {
    text-align: left;
    width: 100%;
    font-weight: 600;
    margin-bottom: 10px;
}

.custom-input {
    height: 58px;
    border-radius: 16px;
    border: 1px solid #9b9b9b;
    padding-left: 18px;
    font-size: 16px;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 0 4px rgba(0, 113, 227, .12);
}

.btn-custom {
    width: 100%;
    height: 58px;
    margin-top: 10px;
    border: none;
    border-radius: 16px;
    background: var(--primary);
    color: white;
    font-size: 16px;
    font-weight: 600;
    transition: .2s;
}

.btn-custom:hover {
    background: var(--primary-hover);
    color: white;
}

@media(max-width:576px) {

    .auth-card {
        padding: 35px 25px;
    }

    .auth-title {
        font-size: 28px;
    }
}