
        body {
            background: linear-gradient(to right, #ffffff, #e0e0e0);

            color: #fff;
        }
        .card {
            background-color: #ffffff;
            border-radius: 1rem;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            color: #333;
        }
        .form-label {
            font-weight: 600;
            color: #444;
        }
        .text-muted {
            color: #666 !important;
        }
        .btn-primary {
            background-color: #667eea;
            border: none;
        }
        .btn-primary:hover {
            background-color: #5a67d8;
        }

/* verifiy OTP form *//* Base styles */html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Gradient background and text for the whole page */
/* body {
    /* background: linear-gradient(to right, #eaeaec, #f9f8fa); 
    color: #fff;
} */

/* Wrapper to center the form and apply flexbox */
.form-wrapper {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card style for the form container */
.card {
    background-color: #ffffff;
    color: #333;
    border-radius: 1rem;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
}

/* Labels inside the form */
.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
    display: block;
}

/* Input styling */
input.form-control {
    width: 100%;
    padding: 10px 12px;
    margin-top: 4px;
    margin-bottom: 16px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: border-color 0.2s;
}

input.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button styling */
button.btn-primary {
    width: 100%;
    padding: 10px;
    font-weight: bold;
    border-radius: 8px;
    background-color: #6d759b; /* Gradient base color */
    border: none;
    transition: background-color 0.3s;
    color: white;
}

button.btn-primary:hover {
    background-color: #5a67d8;
}

/* Alerts */
.alert {
    margin-top: 20px;
    padding: 10px 15px;
    border-radius: 6px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-error, .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
}

.otp-group {
    display: flex;
    gap: 8px;
    align-items: center;
}

.otp-group input.form-control {
    flex: 1;
}

.btn-sm {
    margin-top: 5px;
    padding: 6px 6px;
    font-size: 0.875rem;
    border-radius: 6px;

    height: 36px;      /* Set fixed height */
    width: 100px;      /* Set fixed width */
}

.site-header .navbar-nav .nav-link {
    color: #cbd5db;
  }
  
  .site-header .navbar-nav .nav-link:hover {
    color: #ffffff;
  }
  
  .site-header .navbar-nav .nav-link.active {
    font-weight: 500;
  }

  .bg-steel {
    background-color: #000000;
  }
  