/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 19 2025 | 19:29:44 */
/* Container principal */
.custom-login-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.login-header {
    text-align: center;
    margin-bottom: 50px;
}

.login-header h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.login-header p {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

/* Layout dos formulários */
.login-forms {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: start;
}

.login-form, .register-form {
    background: white;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.login-form h3, .register-form h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

/* Divisor */
.form-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.form-divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Campos do formulário */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    color: #495057;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.form-group input:focus {
    outline: none;
    border-color: #007cba;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.form-group input::placeholder {
    color: #adb5bd;
}

/* Opções do formulário */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 0.9rem;
    cursor: pointer;
}

.remember-me input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.lost-password {
    color: #007cba;
    text-decoration: none;
    font-size: 0.9rem;
}

.lost-password:hover {
    text-decoration: underline;
}

/* Botões */
.btn-login, .btn-register {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-login {
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
}

.btn-login:hover {
    background: linear-gradient(135deg, #005a87, #004670);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

.btn-register {
    background: white;
    color: #007cba;
    border: 2px solid #007cba;
}

.btn-register:hover {
    background: #007cba;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

/* Footer */
.login-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    color: #6c757d;
    font-size: 0.9rem;
}

.login-footer a {
    color: #007cba;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* Responsividade */
@media (max-width: 768px) {
    .login-forms {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-divider {
        display: none;
    }
    
    .custom-login-container {
        padding: 20px 15px;
    }
    
    .login-form, .register-form {
        padding: 30px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .login-header h2 {
        font-size: 1.8rem;
    }
}

/* Estados de loading */
.btn-login:disabled, .btn-register:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}