
/* Dark background for login & register pages */


/* Full page background color */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Full viewport form container with flex centering */
.register-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

/* Form background changed to the same dark blue */
.form-wrapper {
    background-color: #024d8c; /* dark blue */
    color:#fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Heading text color changed to a lighter tone for contrast */
.register-container h2 {
    color: #fff; 
    margin-bottom: 25px;
    text-align: center;
    font-weight: 700;
}

/* Input fields keep light blue gradient for contrast */
.form-control {
    background: linear-gradient(90deg, #eaf6fb, #d1eafc);
    border: 1.5px solid #9dd7f6;
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 1rem;
    color: #014d8c;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    background: linear-gradient(90deg, #cde9fc, #a9d9fa);
    border-color: #3ca6e8;
    box-shadow: 0 0 8px rgba(60, 166, 232, 0.5);
    outline: none;
}

/* Button with lighter blue and white text */
.btn-custom {
    background-color: #3ca6e8;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.btn-custom:hover {
    background-color: #287bb5;
}

/* Responsive tweaks */
@media (max-width: 576px) {
    .form-wrapper {
        border-radius: 0;
        height: 100vh;
        padding: 30px 20px;
    }
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container, .register-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(0,0,0,0.25);
    backdrop-filter: blur(8px);
}

.bg-form {
    background: linear-gradient(145deg, #e6f0fa, #cde0f3);
    border: none;
    padding: 10px;
    color: #000;
    border-radius: 8px;
}

.btn-custom {
    background-color: #ffffff;
    color: #024d8c;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #e6e6e6;
    color: #024d8c;
}
.input-group-text {
    background-color: #fff;
    border: none;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.input-group .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
.dashboard-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #024d8c;
    padding: 15px;
}

.card {
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dashboard-card {
    background: #f9f9f9;
    transition: 0.2s ease;
}

.dashboard-card:hover {
    background: #024d8c;
    color: #fff !important;
}

.dashboard-card .icon i {
     color: #4da6ff; /* Light blue */
    transition: 0.2s ease;
}

.dashboard-card:hover .icon i {
    color: #fff;
}

.active-package-card {
    border-left: 5px solid #024d8c;
    background: #f5faff;
}
.dashboard-card .icon {
    color: #00bfff !important; /* Light blue */
    transition: transform 0.2s;
}

.dashboard-card:hover .icon {
    transform: scale(1.1);
}

.card-inner {
    min-height: 90px;
}

a.text-decoration-none {
    text-decoration: none !important;
}

