body {
    background: linear-gradient(180deg, #ffffff 0%, #fff7e6 100%);
}

h1 {
    font-weight: 700;
    color: #ff6a00;
}

img {
    max-width: 100%;
    height: auto;
}

.btn,
.btn-primary {
    background-color: #ff6a00;
    border-color: #ff6a00;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.btn:hover,
.btn-primary:hover {
    background-color: #e65d00;
    border-color: #e65d00;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.text-primary {
    color: #ff6a00; /* theme primary */
}

.text-success {
    color: #009f49; /* theme accent */
}

.text-info {
    color: #ffb300; /* orange from logo */
}

.text-warning {
    color: #ffca28; /* yellow accent */
}

.text-danger {
    color: #d84315; /* deep orange for alerts */
}

.form-check-label a {
    text-decoration: underline;
}

/* OTP input boxes */
.otp-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.otp-input {
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
    border: 1px solid #ff6a00;
    border-radius: 6px;
    font-size: 1.25rem;
}

.otp-input:focus {
    outline: none;
    border-color: #009f49;
    box-shadow: 0 0 0 1px #009f49;
}

