body {
    background: rgba(247, 247, 250, 1) !important;

}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
}

/* Logo container */
.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 150px; /* Adjust logo size */
    height: auto;
}

.login-box {
    max-width: 400px;
    width: 100%;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}
.login-header h3 {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 26px; /* Matches Display/small */
    font-weight: 400; /* Normal weight */
    line-height: 1.2; /* Use a calculated line-height */
    letter-spacing: 0; /* No extra spacing */
    text-align: left; /* Align text to the left */
    text-underline-position: from-font; /* Maintain underline position from the font */
    text-decoration-skip-ink: none; /* Avoid skipping underlines over inked areas */
    color: rgba(26, 57, 125, 1); /* Set the background color */
    padding: 10px 15px; /* Add padding for a boxed effect */
    border-radius: 5px; /* Smooth edges */
    display: inline-block; /* Keep the background wrapped tightly around text */
}
.btn-primary {
    background: linear-gradient(90deg, #1A397D 18.07%, #1D4AAC 66.37%, #2F68E3 100%);
    border: none;
    color: #fff;
    height: 48px; /* Set button height */
    display: flex; /* Enable Flexbox */
    justify-content: center; /* Center text horizontally */
    align-items: center; /* Center text vertically */
    font-size: 16px; /* Adjust font size */
    border-radius: 5px; /* Smooth edges */
}

.btn-primary:hover {
    background: linear-gradient(90deg, #2F68E3 18.07%, #1D4AAC 66.37%, #1A397D 100%);
}

.custom-wave {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}


.input-container {
    position: relative;
    margin-bottom: 20px;
}
.input-container input {
    width: 100%;
    padding: 10px 10px 10px 40px; /* Add padding-left to make space for the icon */
    border: none;
    border-radius: 8px;
    font-family: "Helvetica Neue", sans-serif; /* Set the font family */
    font-size: 16px; /* Adjusted to match var(--BodyMediumSize) */
    font-weight: 400; /* Font weight for "medium" */
    line-height: 1.5; /* Replace with var(--BodyMediumLineHeight) if defined */
    letter-spacing: normal; /* Replace with var(--BodyMediumTracking) if defined */
    text-align: left;
    background-color: #f9f9f9; /* Light background */
    outline: none;
    transition: border-color 0.3s ease;
}

.input-container input:focus {
    border-color: rgba(26, 57, 125, 1); /* Matches the h3 background color */
}

.input-container img.icon {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 20px; /* Adjust width for the icon */
    height: 20px; /* Adjust height for the icon */
    opacity: 40%;
}
.input-container input::placeholder {
    color: #b0b0b0; /* Light gray color for the placeholder text */
    font-family: "Helvetica Neue", sans-serif; /* Ensure font consistency */
    font-size: 16px; /* Matches input text font size */
    font-weight: 400; /* Matches the medium body font weight */
    line-height: 1.5; /* Matches the input text line height */
    letter-spacing: normal; /* Matches the input text letter spacing */
    text-align: left; /* Align placeholder text to the left */
}

/* Container for custom checkbox and label */
.custom-checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* Hide the native checkbox */
.custom-checkbox {
    display: none;
}

/* Custom checkmark style */
.custom-checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(26, 57, 125, 1); /* Border color matches button gradient */
    border-radius: 4px; /* Rounded corners */
    background: transparent;
    position: relative;
    margin-right: 8px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

/* Check symbol when checked */
.custom-checkbox:checked + .custom-checkmark::after {
    content: "✓"; /* Unicode checkmark symbol */
    font-size: 14px;
    color: #fff; /* White checkmark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}

/* Gradient background when checked */
.custom-checkbox:checked + .custom-checkmark {
    background: linear-gradient(90deg, #1A397D 18.07%, #1D4AAC 66.37%, #2F68E3 100%);
    border-color: transparent; /* Remove border when checked */
}

/* Label styling */
.custom-checkbox-label {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 16px;
    line-height: 20px; /* Aligns vertically with checkbox */
    cursor: pointer;
}
