/* Registration Page Styles */

.register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.register-form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.register-benefits-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-benefits-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
}

.register-benefit-item {
    display: flex;
    align-items: start;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.register-benefit-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.register-benefit-icon {
    background: linear-gradient(135deg, rgba(37, 149, 145, 0.1) 0%, rgba(37, 149, 145, 0.05) 100%);
    border-radius: 16px;
    padding: 1rem;
    margin-right: 1.25rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-benefit-icon i {
    font-size: 1.75rem;
    color: #259591;
}

.register-benefit-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #212529;
}

.register-benefit-content p {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

.register-form-header {
    margin-bottom: 2rem;
}

.register-form-header h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.register-trust-badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.register-trust-badge p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #495057;
}

.register-trust-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.register-trust-icons i {
    font-size: 1.25rem;
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .register-benefits-section {
        margin-top: 2rem;
    }
    
    .register-form-section,
    .register-benefits-section {
        padding: 2rem;
    }
    
    .register-benefits-title {
        font-size: 1.5rem;
    }
    
    .register-form-header h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767.98px) {
    .register-container {
        padding: 1rem;
    }
    
    .register-form-section,
    .register-benefits-section {
        padding: 1.5rem;
    }
    
    .register-benefit-item {
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .register-benefit-icon {
        padding: 0.5rem;
        width: 50px;
        height: 50px;
    }
    
    .register-benefit-icon i {
        font-size: 1.25rem;
    }
}

/* Form specific styling */
.register-form-section .form-label {
    font-weight: 500;
    color: #374151;
}

.register-form-section .form-control {
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
}

.register-form-section .form-control:focus {
    border-color: #259591;
    box-shadow: 0 0 0 3px rgba(37, 149, 145, 0.1);
}

.register-form-section .btn-primary {
    padding: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    background: #259591;
    border: none;
}

.register-form-section .btn-primary:hover {
    background: #1e7773;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 149, 145, 0.3);
}

.register-divider {
    margin: 1.5rem 0;
    text-align: center;
    position: relative;
}

.register-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.register-divider span {
    background: white;
    padding: 0 1rem;
    position: relative;
    color: #6b7280;
    font-size: 0.875rem;
}

.highlight-text {
    color: #259591;
    font-weight: 700;
}
