.login-container {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    padding: 30px;
    text-align: center;
}

.login-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.login-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

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

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #e53935;
}

.input-field {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: #7b1fa2;
}

.otp-button {
    background-color: #7b1fa2;
    background-image: linear-gradient(to right, #2563eb , #9333ea);
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.otp-button:hover {
    background-color: #6a1b9a;
}

.divider {
    margin: 25px 0;
    text-align: center;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #eee;
}

.divider-text {
    background-color: white;
    padding: 0 15px;
    position: relative;
    display: inline-block;
    color: #777;
    font-size: 14px;
}

.password-link {
    color: #7b1fa2;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

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

.footer-text {
    margin-top: 30px;
    font-size: 12px;
    color: #999;
    line-height: 1.5;
}