* {
    padding: 0;
    border-radius: 0;
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    font-family: 'Quicksand';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
}

.login-wrapper {
    display: flex;
    flex-direction: row;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    height: 500px; /* Set a fixed height for the wrapper */
}

.login-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C8EBFB;
}

.login-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space without distortion */
}
.logo{
    width: 130px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
    max-height: 80px; /* Optional: Set a maximum height */
}

form {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem 2rem 2rem;
}

form h1 {
    color: #2e3192;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.login-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #C8EBFB; */
    padding: 2rem;
    border-radius: 20px;
    gap: 1rem;
    width: 100%;
}

input {
    padding: 0.5rem;
    border-radius: 15px;
    border: none;
    width: 100%;
    max-width: 400px;
    background-color: white;
    border: #2E3192 2px solid;
}

.username,
.password {
    width: 100%;
}

.username label,
.password label {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2E3192;
}

.submit {
    background-color: #00AEEF;
    color: white;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 15px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    max-width: 400px;
}

.submit:hover {
    background-color: #0ebfff;
}

.submit a {
    text-decoration: none;
    color: white;
    font-size: medium;
}

p {
    color: #2e3192;
}

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