 /* Tab styling */
 .form-tabs .nav-tabs {
     border: none;
     justify-content: center;
 }

 .form-tabs .nav-link {
     border: none;
     background: transparent;
     color: #666;
     padding: 10px 30px;
     border-radius: 25px;
     margin: 0 5px;
     transition: all 0.3s ease;
 }

 .form-tabs .nav-link.active {
     background: #ff6b35;
     color: white;
 }

 /* Password toggle */
 .form-inner {
     position: relative;
 }

 .password-toggle {
     position: absolute;
     right: 15px;
     top: 50%;
     transform: translateY(-50%);
     cursor: pointer;
     color: #999;
 }

 /* OTP inputs */
 .otp-inputs {
     display: flex;
     justify-content: center;
     gap: 10px;
 }

 .otp-input {
     width: 50px;
     height: 50px;
     text-align: center;
     border: 2px solid #ddd;
     border-radius: 8px;
     font-size: 20px;
     font-weight: bold;
 }

 .otp-input:focus {
     border-color: #ff6b35;
     outline: none;
 }

 .resend-otp {
     text-align: center;
 }

 .resend-otp a {
     color: #ff6b35;
     text-decoration: none;
 }

 .timer {
     font-size: 14px;
     color: #666;
     margin-top: 5px;
 }

 /* Custom Checkbox Styling */
 .custom-checkbox {
     position: relative;
     display: flex;
     align-items: center;
     margin-bottom: 15px;
 }

 .custom-checkbox .form-check-input {
     position: absolute;
     opacity: 0;
     cursor: pointer;
     height: 0;
     width: 0;
 }

 .custom-checkbox .form-check-label {
     display: flex;
     align-items: center;
     cursor: pointer;
     font-size: 14px;
     color: #666;
     user-select: none;
     transition: color 0.3s ease;
 }

 .custom-checkbox .checkmark {
     position: relative;
     display: inline-block;
     width: 20px;
     height: 20px;
     background-color: #fff;
     border: 2px solid #ddd;
     border-radius: 4px;
     margin-right: 10px;
     transition: all 0.3s ease;
 }

 /* Hover effect */
 .custom-checkbox:hover .form-check-input~.form-check-label .checkmark {
     border-color: #ff6b35;
     box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
 }

 /* Checked state */
 .custom-checkbox .form-check-input:checked~.form-check-label .checkmark {
     background-color: #ff6b35;
     border-color: #ff6b35;
 }

 /* Checkmark icon */
 .custom-checkbox .checkmark:after {
     content: "";
     position: absolute;
     display: none;
     left: 6px;
     top: 2px;
     width: 5px;
     height: 10px;
     border: solid white;
     border-width: 0 2px 2px 0;
     transform: rotate(45deg);
 }

 /* Show checkmark when checked */
 .custom-checkbox .form-check-input:checked~.form-check-label .checkmark:after {
     display: block;
 }

 /* Focus state for accessibility */
 .custom-checkbox .form-check-input:focus~.form-check-label .checkmark {
     border-color: #ff6b35;
     box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
 }

 /* Active/pressed state */
 .custom-checkbox .form-check-input:active~.form-check-label .checkmark {
     transform: scale(0.95);
 }

 /* Terms link styling */
 .terms-link {
     color: #ff6b35;
     text-decoration: none;
     font-weight: 500;
 }

 .terms-link:hover {
     text-decoration: underline;
 }

 #userIcon.logged-in svg path {
     stroke: #ff6b35 !important;
 }

 .modal {
     backdrop-filter: blur(10px);
 }

 .modal-backdrop {
     background-color: rgba(0, 0, 0, 0.6);
 }

 .modal-content {
     border: none;
     border-radius: 20px;
     box-shadow: var(--shadow);
     overflow: hidden;
     background: white;
     position: relative;
 }

 .modal-content::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--gradient);
 }

 .modal-header {
     background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     border-bottom: 1px solid var(--border-color);
     padding: 24px 30px 20px;
     position: relative;
 }

 .modal-title {
     font-weight: 700;
     font-size: 1.5rem;
     color: var(--text-dark);
     margin-bottom: 5px;
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .modal-title i {
     color: var(--primary-color);
     font-size: 1.3rem;
 }

 .modal-subtitle {
     color: var(--text-light);
     font-size: 0.9rem;
     margin: 0;
 }

 .btn-close {
     background: rgba(255, 107, 53, 0.1);
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0.8;
     transition: all 0.3s ease;
 }

 .btn-close:hover {
     background: rgba(255, 107, 53, 0.2);
     opacity: 1;
     transform: rotate(90deg);
 }

 .modal-body {
     padding: 30px;
 }

 .profile-avatar {
     width: 80px;
     height: 80px;
     background: var(--gradient);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 25px;
     box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
 }

 .profile-avatar i {
     font-size: 2.2rem;
     color: white;
 }

 .profile-info {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .profile-info li {
     display: flex;
     align-items: center;
     padding: 15px 20px;
     margin-bottom: 12px;
     background: var(--bg-light);
     border-radius: 12px;
     border-left: 4px solid var(--primary-color);
     transition: all 0.3s ease;
 }

 .profile-info li:hover {
     background: rgba(255, 107, 53, 0.05);
     transform: translateX(5px);
 }

 .profile-info .info-icon {
     width: 40px;
     height: 40px;
     background: rgba(255, 107, 53, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 15px;
     color: var(--primary-color);
     font-size: 1.1rem;
 }

 .profile-info .info-content {
     flex: 1;
 }

 .profile-info .info-label {
     font-size: 0.85rem;
     color: var(--text-light);
     font-weight: 500;
     margin-bottom: 2px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .profile-info .info-value {
     font-size: 1rem;
     color: var(--text-dark);
     font-weight: 600;
     word-break: break-all;
 }

 .modal-footer {
     background: rgba(248, 249, 250, 0.5);
     border-top: 1px solid var(--border-color);
     padding: 20px 30px;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .btn-logout {
     background: linear-gradient(135deg, #e74c3c, #c0392b);
     border: none;
     border-radius: 25px;
     padding: 12px 25px;
     color: white;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
 }

 .btn-logout:hover {
     color: white;
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
 }

 .btn-edit {
     background: rgba(52, 152, 219, 0.1);
     border: 2px solid var(--accent-color);
     border-radius: 25px;
     padding: 10px 20px;
     color: var(--accent-color);
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
 }

 .btn-edit:hover {
     background: var(--accent-color);
     color: white;
     transform: translateY(-2px);
 }

 .modal.fade .modal-dialog {
     transition: transform 0.4s ease-out, opacity 0.3s ease-out;
     transform: translate(0, -50px) scale(0.95);
 }

 .modal.show .modal-dialog {
     transform: none;
 }

 /* Responsive adjustments */
 @media (max-width: 576px) {
     .modal-body {
         padding: 20px;
     }

     .modal-header {
         padding: 20px;
     }

     .modal-footer {
         padding: 15px 20px;
         flex-direction: column;
         gap: 10px;
     }

     .profile-info li {
         padding: 12px 15px;
     }
 }