body {
    /* background: url("../img/bgincla.png") no-repeat center center fixed; */
    background-size: cover;
    color: #333;
    font-size: 16px;
    font-family: 'Muli', sans-serif;
    margin: 0;
    padding-top: 2px;
    height: 100vh;
    overflow-x: hidden; /* This is to avoid horizontal scrolling */
}

header {
    overflow: visible; /* Ensure overflow is visible to allow sticky behavior */
}


/* Sticky Navbar */
.navbar {
    /* background-color: #ff5d57; */
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensure navbar stays on top */
}

.navbar-brand {
    color: #cc2424;
    font-size: 24px;
}

.navbar-nav .nav-link {
    color: #b43434 !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #f29d35 !important;
}

/* Form Wrapper (Centered Form) */
.wrapper {
    width: 100%;
    max-width: 600px;
    padding: 30px;
    background: #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin: 10px auto 0; /* Center form and leave space for navbar */
}

.header-img {
    text-align: center;
    margin-bottom: 20px;
}

.header-img img {
    width: 150px;
    height: auto;
    border-radius: 8px;
}

.wrapper h3 {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 600;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.form-wrapper {
    position: relative;
    width: 48%;
}

.form-wrapper label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.form-control:focus {
    outline: none;
    border-color: #ff5d57;
}

.form-wrapper input[type="password"] {
    padding-right: 40px;
}

/* Style for the icon inside the input field */
.toggle-password {
    position: absolute;
    top: 50%;
    right: 10px; /* Position it inside the input, towards the right */
    transform: translateY(-50%); /* Vertically center the icon */
    cursor: pointer;
    color: #ff5d57;
    font-size: 18px;
}

/* Styling for the icon when visible */
.toggle-password i {
    transition: color 0.3s ease;
}

/* Optional: If you want to change color when the password is visible */
.toggle-password i.fa-eye {
    color: #f29d35;
}


header {
    overflow: visible; /* Ensure overflow is visible to allow sticky behavior */
}

/* Style for the input wrapper to hold the icon */
.input-wrapper {
    position: relative;
}

/* Style for password and confirm password input fields */
.form-control {
    width: 100%;
    padding: 12px 40px 12px 12px; /* Add right padding for the icon */
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
}
.checkbox {
    margin-bottom: 20px;
}

.checkbox label {
    font-size: 14px;
    display: flex;
    align-items: center;
}

.checkbox input {
    margin-right: 8px;
}

button {
    width: 100%;
    padding: 12px;
    border-radius: 20px;
    border: none;
    background-color: #ff5d57;
    color: #e5e5e5;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #f29d35;
}

p {
    text-align: center;
    margin-top: 20px;
}

p a {
    color: #ff5d57;
    text-decoration: none;
    font-weight: 600;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
    .wrapper {
        padding: 20px;
    }

    .wrapper h3 {
        font-size: 22px;
    }

    .form-wrapper {
        width: 100%;
    }
}
