/* Front Page Register - Fond noir */
.register-page-wrapper {
    background: #000000;
    min-height: 100vh;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Colonne gauche - Branding */
.register-branding {
    position: relative;
    overflow: hidden;
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Panneaux violets supprimés - fond noir uni */
.register-branding::before,
.register-branding::after {
    display: none;
}

.register-branding .purple-panel,
.register-branding .purple-panel-extra {
    display: none;
}

/* Contenu branding */
.branding-content {
    z-index: 10;
    position: relative;
    text-align: left;
    width: 100%;
    max-width: 600px;
    padding: 0 80px;
}

.brand-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Use a large SVG logo instead of text; keep responsive sizing */
.brand-title .brand-logo {
    width: 400px;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0;
}

.brand-tagline {
    font-size: 1.75rem;
    font-family: "brother-1816", sans-serif;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.5;
    margin-top: 1rem;
}

/* Colonne droite - Formulaire */
.register-form-section {
    background: #000000;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.register-form-glass-card {
    max-width: 450px;
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
    padding: 40px 35px;
}

.register-title {
    font-family: "utile", "brother-1816", sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.register-form .form-label {
    font-family: "utile", "brother-1816", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

.register-form .form-control {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-family: "utile", "brother-1816", sans-serif;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 1rem;
}

.register-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.register-form .form-control:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.register-form .form-check-label {
    font-family: "utile", "brother-1816", sans-serif;
    font-size: 12px;
    color: #fff;
    line-height: 1.5;
}

.register-form .form-check-input {
    margin-top: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.register-form .form-check-input:checked {
    background-color: #f36818;
    border-color: #f36818;
}

.register-submit-btn {
    padding: 14px 24px;
    background: #f36818;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    font-family: "utile", "brother-1816", sans-serif;
    transition: all 0.2s ease;
    width: 100%;
    cursor: pointer;
    margin-top: 1rem;
}

.register-submit-btn:hover {
    background: #d55812;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(243, 104, 24, 0.4);
}

.register-submit-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991.98px) {
    .register-branding {
        min-height: 50vh;
    }

    .branding-content {
        padding: 0 40px;
    }

    .brand-title .brand-logo {
        width: 300px;
        max-width: 90%;
    }

    .brand-tagline {
        font-size: 1.5rem;
    }

    .register-form-section {
        min-height: 50vh;
    }
}

/* Ensure login and register pages share the exact same column widths on large screens */
@media (min-width: 992px) {
    .register-branding {
        flex: 0 0 66.666666%;
        max-width: 66.666666%;
    }
    .register-form-section {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}
