* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

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

.container {
    /* display: flex; */
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;

}

.login-box {
    padding: 40px;
    flex: 1;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.logo {
    /* text-align: center; */
    margin-bottom: 20px;
}

/* .logo img {
        width: 150px;
    } */

h2 {
    margin-top: 20px;
    font-size: 24px;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.remember-me {
    /* display: flex;
        align-items: center; */
    margin-bottom: 5px;
}

/* .remember-me input {
        margin-right: 10px;
    } */

.forgot-password {
    display: block;
    margin-left: auto;
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 30%;
    padding: 10px;
    background-color: #57269F;
    color: #ffffff;
    border: none;
    border-radius: 23px;
    font-size: 16px;
    cursor: pointer;
}

.login-button:hover {
    background-color: #6c63ff;
    color: black;
}

.illustration {
    height: 674px;
    /* margin-bottom: -20px; */
    float: right;
}

/* .illustration img {
        width: 80%;
    } */

.footerbg {
    background-color: #451095;
}

.g-recaptcha {
    margin-bottom: 3px;
}

.error {
    margin-bottom: 10px;
}

.password {
    display: flex;
}