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

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

.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 350px;
}

.logo {
    width: 250px;
    margin-bottom: 10px;
}

.login-form h2, .otp-form h2 {
    margin-bottom: 15px;
}

.login-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-form .btn {
    width: 100%;
    padding: 10px;
    background: #cccccc;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

    .login-form .btn.active {
        background: #0a5e3a;
    }

    .login-form .btn.disabled {
        background: #cccccc;
        cursor: not-allowed;
    }

.login-form .alt-login {
    width: 100%;
    padding: 10px;
    border: 1px solid #0a5e3a;
    background: white;
    color: #0a5e3a;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 5px;
}

.login-form .error {
    border: 1px solid red;
}

.error-msg {
    color: red;
    font-size: 12px;
    display: none;
    text-align: left;
    margin-top: -8px;
    margin-bottom: 10px;
}

.hover-btn:hover {
    background: #0a5e3a;
    color: white
}

.input-validation-error {
    border: 1px solid red !important;
}

.validation-error {
    text-align: left !important;
    font-size: 12px !important;
}

.otp-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 20px;
    letter-spacing: 5px;
}

.otp-form .btn {
    width: 100%;
    padding: 10px;
    background: #cccccc;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
}

.otp-info {
    font-size: 14px;
    color: gray;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
}

    .otp-input:focus {
        border-color: #007b5e;
    }

.disabled-form {
    position: relative;
    pointer-events: none;
    opacity: 0.3;
    /*filter: blur(4px);*/
}

    .disabled-form input,
    .disabled-form button {
        pointer-events: none;
    }

.back-button {
    background: none;
    border: none;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-weight: 500;
}

    .back-button:hover {
        color: #000;
    }

.otp-text {
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-top: 10px;
}

.resend-otp {
    color: #2d7a45;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}

    .resend-otp:hover {
        text-decoration: underline;
    }