body {
    background-color: #fefefe;
    font-family: 'Poppins', sans-serif;
}
h1, h2, h3, h4, h5, p, label {
    font-family: 'Poppins', sans-serif;
}
.login-container, .register-container {
    min-height: 100vh;
}
.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.btn-primary {
    background-color: #284473;
    border-color: #284473;
    padding: 12px 0;
    font-weight: 500;
}
.btn-primary:hover {
    background-color: #1d3557;
    border-color: #1d3557;
}
.form-control:focus {
    border-color: #284473;
    box-shadow: 0 0 0 0.25rem rgba(40, 68, 115, 0.25);
}
.form-check-input:checked {
    background-color: #284473;
    border-color: #284473;
}
.text-primary {
    color: #284473 !important;
}
.brand-text {
    color: #F9C107;
}
.step-indicator {
    position: relative;
    z-index: 1;
}
.step-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}
/* Style for the education section */
.card .mb-5 {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.card .mb-5:last-child {
    border-bottom: none;
}

.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.swal2-popup {
    font-family: 'Poppins', sans-serif;
}

.swal2-title {
    font-weight: 600;
}

.swal2-confirm {
    background-color: #4e73df !important;
    border-color: #4e73df !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem !important;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .input-group-text {
        padding: 0.375rem 0.75rem;
    }
}

