.login-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.login-container {
    display: flex;
    height: 100vh;
}


.login-left {
    flex: 1;
    background: linear-gradient(to bottom, #87ceeb, #ffffff, #00a651);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 40px;
}

.flag-image {
    width: 120px;
    margin-top: 20px;
}

.login-right {
    flex: 1;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form {
    width: 80%;
    max-width: 400px;
}

.login-form h2 {
    color: #333;
    margin-bottom: 20px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form button {
    width: 100%;
    padding: 10px;
    background-color: #00a651;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-form p {
    text-align: center;
    margin-top: 10px;
}

.login-form .error {
    color: red;
    margin-bottom: 10px;
}
.otp-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}



.otp-container {
    display: flex;
    height: 100vh;
}

.otp-left {
    flex: 1;
    background: linear-gradient(to bottom, #87ceeb, #ffffff, #00a651);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: black;
    padding: 40px;
    text-align: center;
}

.flag-image {
    width: 100px;
    margin-top: 20px;
}

.otp-right {
    flex: 1;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.otp-form {
    width: 80%;
    max-width: 400px;
}

.otp-form h2 {
    color: #333;
    margin-bottom: 20px;
}

.otp-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.otp-form button {
    width: 100%;
    padding: 10px;
    background-color: #00a651;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.otp-form p {
    text-align: center;
    margin-top: 10px;
}

.otp-message {
    background-color: #e6ffe6;
    color: green;
    border: 1px solid #b2d8b2;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 14px;
}
