/**
 * Custom Login Page Styles - Standalone
 * Version: 3.0.0
 * Pour le shortcode [bypixcl_login_form]
 */

/* Container principal */


.block-content{
    padding: 0 !important;
}
.bypixcl-login-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Layout 2 colonnes */
.bypixcl-login-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Colonnes */
.bypixcl-login-column {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Descendre la colonne de gauche */
.bypixcl-login-column.left {
    margin-top: 30px;
}

/* Titres avec points */
.bypixcl-login-column h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    padding-left: 20px;
    position: relative;
}

.bypixcl-login-column h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bypixcl-login-column.left h2::before {
    background: #E95B09;
}

.bypixcl-login-column.right h2::before {
    background: #1F3B3D;
}

/* Sous-titres */
.bypixcl-login-subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
    margin: 8px 0 0 0;
    line-height: 1.5;
}

/* Formulaire */
.bypixcl-login-form {
    margin-top: 30px;
}

/* Labels */
.bypixcl-form-group {
    margin-bottom: 20px;
}

.bypixcl-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #4B5563;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Inputs */
.bypixcl-form-group input[type="text"],
.bypixcl-form-group input[type="password"],
.bypixcl-form-group input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 15px;
    color: #1a1a1a;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

.bypixcl-form-group input:focus {
    border-color: #E95B09;
    outline: none;
    box-shadow: 0 0 0 3px rgba(233, 91, 9, 0.1);
}

/* Remember me */
.bypixcl-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 15px 0;
}

.bypixcl-remember input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.bypixcl-remember label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
    color: #4B5563;
}

/* Lien mot de passe oublié */
.bypixcl-lost-password {
    margin: 15px 0 25px 0;
}

.bypixcl-lost-password a {
    color: #E95B09;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bypixcl-lost-password a:hover {
    color: #f47126;
    text-decoration: underline;
}

/* Boutons */
.bypixcl-btn {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.bypixcl-btn-primary {
    background: #E95B09;
    color: #fff;
}

.bypixcl-btn-primary:hover {
    background: #f47126;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(233, 91, 9, 0.3);
}

.bypixcl-btn-dark {
    background: #1F3B3D;
    color: #fff;
    margin-top: 20px;
}

.bypixcl-btn-dark:hover {
    background: #2d5456;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(31, 59, 61, 0.3);
}

.bypixcl-btn-secondary {
    background: #E5E7EB;
    color: #4B5563;
}

.bypixcl-btn-secondary:hover {
    background: #D1D5DB;
    color: #1a1a1a;
}

/* Section contact */
.bypixcl-contact-section {
    margin-top: 20px;
    padding-top: 12px;
    border-top: 1px solid #E5E7EB;
}

.bypixcl-contact-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    padding-left: 20px;
    position: relative;
}

/* Point gris pour "Nous contacter" */
.bypixcl-contact-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 8px;
    height: 8px;
    background: #E5E7EB;
    border-radius: 50%;
}

.bypixcl-contact-section p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Contact info */
.bypixcl-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.bypixcl-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #1a1a1a;
}

.bypixcl-contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6B7280;
}

.bypixcl-contact-item a {
    color: #E95B09;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.bypixcl-contact-item a:hover {
    color: #f47126;
    text-decoration: underline;
}

.bypixcl-contact-hours {
    font-size: 12px;
    color: #6B7280;
    margin-left: 10px;
}

/* Messages */
.bypixcl-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 6px;
    font-size: 14px;
}

.bypixcl-message.error {
    background: #FEE2E2;
    color: #991B1B;
    border-left: 4px solid #DC2626;
}

.bypixcl-message.success {
    background: #D1FAE5;
    color: #065F46;
    border-left: 4px solid #10B981;
}

.bypixcl-message.info {
    background: #DBEAFE;
    color: #1E40AF;
    border-left: 4px solid #3B82F6;
}

/* Responsive */
@media (max-width: 768px) {
    .bypixcl-login-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bypixcl-login-column {
        padding: 30px 20px;
    }
    
    .bypixcl-login-column h2 {
        font-size: 20px;
    }
}
