/* number */
.otp-card {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background: #fff;
    text-align: center;
}

.otp-title {
    font-weight: 600;
    font-size: 20px;
}

.otp-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 8px;
}

.btn-otp {
    background-color: #8b0000;
    color: #fff;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-otp:hover {
    background-color: #6f0000;
    color: #fff;
}

.btn-otp:disabled {
    background-color: #6f0000;
    color: #dddbdb;
    cursor: not-allowed;
}

/* otp */
.otp-card {
    max-width: 420px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.otp-title {
    font-weight: 600;
    font-size: 20px;
}

.otp-subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

.otp-inputs input {
    width: 45px;
    height: 50px;
    margin: 0 5px;
    text-align: center;
    font-size: 18px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.otp-inputs input:focus {
    border-color: #8b0000;
    outline: none;
}

.btn-verify {
    background-color: #8b0000;
    color: #fff;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-verify:hover {
    background-color: #6f0000;
    color: #fff;
}

.btn-verify:disabled {
    background-color: #6f0000;
    color: #dddbdb;
    cursor: not-allowed;
}

.resend {
    color: #8b0000;
    font-weight: 500;
    cursor: pointer;
}

.timer {
    font-size: 14px;
    color: #666;
}

.timer span {
    color: #8b0000;
    font-weight: 600;
}

/* success */
.success-card {
    max-width: 400px;
    width: 100%;
    padding: 30px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.check-circle {
    width: 100px;
    height: 100px;
    background-color: #1e88e5;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.check-circle svg {
    width: 50px;
    height: 50px;
    color: #fff;
}

.title {
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 25px;
}

.btn-login {
    background-color: #8b0000;
    color: #fff;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
}

.btn-login:hover {
    background-color: #6f0000;
    color: #fff;
}

/* Unsuccessful */
.cross-circle {
    width: 100px;
    height: 100px;
    background-color: #e51e1e;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cross-circle svg {
    width: 50px;
    height: 50px;
    color: #fff;
}