
.registration-cv {
    width: 100%;
    max-width: 60%;
    min-height: 600px;

    background: #7cfacc;

    border-radius: 25px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
    overflow: hidden;

    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap
}


.registration-cv .img-container {
    flex: 2;
    background-image: url("/static/registration/img/png/newli.59bfc852dbb4.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    min-width: min-content;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}


.registration-cv .form-container {
    flex: 3;
    z-index: 3;
    height: 100%;
    user-select: none;
    min-height: 100%;
    min-width: 304px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;

    border-radius: 0 0 0 25px;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(1.5px);
    overflow: hidden;
    background: #FCFEFF;

    padding: 40px 25px;
}

.registration-cv .form-container .title {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: var(--primary-font);
    font-weight: 700;
    line-height: 120%;
    font-size: 26px;
    text-align: center;
}

.registration-cv .form-container form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.custom-container {
    overflow: auto;
    height: 100dvh
}


.centred-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 648px
}


.custom-container .header-slogan {
    padding: 40px;
    width: 100%;
    display: flex;
    flex-direction: column;

    gap: 24px;
    background: rgba(28, 27, 31, 0.73);

}

.custom-container .header-slogan .container-logo {
    flex: 1;


}

.custom-container .header-slogan .container-logo p {
    margin: 0;
    padding: 0;
    color: #FFFFFF;
    font-family: var(--primary-font);
    font-size: 40px;
    line-height: 120%;
    font-weight: 700;
    white-space: nowrap;
}

.custom-container .header-slogan .container-slogan {
    flex: 3;
}

.custom-container .header-slogan .container-slogan p {
    padding: 0;
    margin: 0;
    color: #FFFFFF;
    font-family: var(--primary-font);
    font-size: 24px;
    line-height: 120%;
    font-weight: 500;
    white-space: wrap;
}


@media (max-width: 977px) {
    .registration-cv {
        max-width: initial;
        flex-direction: column;
    }

    .registration-cv .form-container {
        flex: 3;
        width: 100%;

        border-radius: 0;
        box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
        backdrop-filter: blur(1.5px);
        overflow: hidden;
        background: #FCFEFF;

        padding: 40px 25px;
    }

    .registration-cv .img-container {
        /*min-height: 30vh;*/
        flex: initial;
        width: 100%;
    }

    .custom-container {
        overflow: auto;
        height: 100dvh
    }

    .centred-container {
        height: auto;
    }

}

/* ============================================================ */
/* Login page background — no blanco, gradiente morado suave    */
/* + botón Google oficial (Material guidelines)                 */
/* ============================================================ */

body {
    background: #2e0f6e url("/static/web_public/imgs/landing/fondo_magico.52752bcea784.webp") center center / cover no-repeat fixed;
    min-height: 100dvh;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(46, 15, 110, 0.35);
    z-index: -1;
    pointer-events: none;
}

.custom-container {
    background: transparent;
}

.centred-container {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
}

/* Google login button — Material Design v2 (blanco con sombra + G color) */
.google-login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 44px;
    padding: 10px 16px;
    background: #ffffff;
    color: #3c4043;
    font-family: 'Roboto', 'Poppins', var(--primary-font), sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.25px;
    text-decoration: none;
    border: 1px solid #dadce0;
    border-radius: 8px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
    cursor: pointer;
    transition: background 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.google-login-btn:hover {
    background: #f8faff;
    border-color: #c6d4ec;
    box-shadow: 0 2px 6px 0 rgba(60, 64, 67, 0.15);
    text-decoration: none;
    color: #3c4043;
}

.google-login-btn:active {
    background: #eef3fc;
}

.google-login-btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* P1 #10 — Global form error (auth/non-field) */
.form-global-error {
    display: none;
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 4px;
    background: #fdecea;
    color: #b91c1c;
    border: 1px solid #f5c2c0;
    border-left: 4px solid #b91c1c;
    border-radius: 6px;
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 500;
    align-items: flex-start;
    gap: 8px;
}

.form-global-error.is-visible {
    display: flex;
}

.form-global-error i {
    margin-top: 2px;
    flex-shrink: 0;
}
