* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
body {
    background-color: #2a8f47;
    background-image: url('../img/Frame 1171276892.svg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}
.login-container {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 700px;
}
.login-container h2 {
    color: #292929;
    margin-bottom: 10px;
    font-size: 24px;
}
.login-container p {
    color: #A6A6A6;
    font-size: 14px;
    margin-bottom: 20px;
}
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    display: block;
    color: #292929;
    font-weight: 600;
    margin-bottom: 5px;
}
.input-group input, input {
    width: 100%;
    padding: 10px;
    color: #292929;
    border: 1px solid #A6A6A6;
    outline: none;
}
.input-password input {
    position: relative;
    width: 100%;
    padding: 10px;
    color: #292929;
    border: 1px solid #A6A6A6;
    border-radius: 6px;
    outline: none;
}
.pass-icon {
    position: absolute;
    margin-top: 10px;
    margin-right: 90px;
    cursor: pointer;
}
.forgot-password {
    text-align: right;
    font-size: 12px;
    margin-bottom: 15px;
}
.forgot-password a {
    text-decoration: none;
    color: #2a8f47;
    font-weight: 600;
}
.login-button {
    background: #2a8f47;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    margin-top: 10px;
}
.login-button:hover, button:hover {
    background: #256429;
}
.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    padding-bottom: 0px;
    margin-bottom: 20px;
}
.otp-inputs input {
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.invalid-feedback {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.is-invalid {
    border-color: red;
    background-color: #ffe6e6;
}

.alert-success {
    border: 1px solid #2a8f47;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 6px;
    background-color: #d1e7dd;
    color: #2a8f47;
}