body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    font-family: sans-serif;
}

body.login {
    background-color: white;
}

.login-container {
    position: relative;
    z-index: 1;
    background-color: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 600px;
    text-align: center;
}

.logo {
    width: 150px; /* Adjust the size of the logo */
    margin-bottom: 20px;
}

@font-face {
    font-family: 'TheNextFont'; /* Replace with the name you want to use */
    src: url('font/The Next Font.ttf') format('truetype'); 
    font-weight: normal;
    font-style: normal;
}


.font-heading{
    text-align: center;
    margin-bottom: 20px;
    font-family:'TheNextFont';
    font-size: 3.5rem;
    color:#446f44;
    margin-bottom: 20px;
    margin-top: 4px;

}

.form-group {
    display: flex; /* Use flexbox for alignment */
    justify-content: space-between; /* Space between label and input */
    margin-bottom: 30px; /* Space between form groups */
    align-items: center; /* Center items vertically */
}

label {
    flex: 0.5; /* Allow label to take up space */
    margin-right: 10px; /* Space between label and input */
    text-align: left; /* Align text to the left */
    color: #555; /* Label color */
}

input[type="email"],
input[type="password"],
select {
    flex: 2; /* Allow input to take up more space */
    padding: 10px; /* Padding for inputs */
    border: 1px solid #ccc; /* Border for inputs */
    border-radius: 4px; /* Rounded corners */
}

.forgot-password-container {
    text-align: right; /* Align the link to the right */
    margin-bottom: 30px; /* Space below the link */
}

.forgot-password {
    color: #103b6a; 
    text-decoration: none; 
}

.forgot-password:hover {
    color: #0ecae7;

}

button {
    width: 100%;
    padding: 20px;
    background-color: #2d642d;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

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

.error {
    color: rgb(158, 32, 32);
    margin-bottom: 15px;
}


.container {
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

form {
    margin-bottom: 20px;
}

input[type="date"] {
    padding: 5px;
    margin-right: 10px;
}

button {
    padding: 5px 10px;
}

.big-button {
    padding: 15px 30px; /* Adjust padding for size */
    font-size: 20px; /* Adjust font size */
    background-color: #446f44; /* Green background */
    color: white; /* White text */
    border: none; /* No border */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    transition: background-color 0.3s; /* Smooth background color transition */
}

.big-button:hover {
    background-color: #498249; /* Darker green on hover */
}
        .bg-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.2;
            overflow: hidden;
        }
        .bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
        }

