:root {
    --primary-color: #640e3d;
    --secondary-coloe: #d0ad3b;
}

body {
    /* background-color: #f9fafb; */
    background-image: url('../images/background-img.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

.dailer-container {
    height: 100vh;
}

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

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e0f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon-circle i {
    color: var(--primary-color);
    font-size: 20px;
}

.form-control,
.btn {
    border-radius: 6px;
}

.btn {
    background-color: var(--primary-color);
    color: white;
    width: 100%;
}

.btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn:disabled {
    background-color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

.login-container form {
    width: 100%;
}

.login-container form input[type="tel"] {
    width: 100%;
}

.iti {
    width: 100%;
}

.verify-container {
    /* max-width: 420px; */
    margin: auto;
    padding: 30px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
    width:100%;
}

.otp-input {
    width: 42px;
    height: 50px;
    text-align: center;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    margin: 0 4px;
    font-size: 20px;
}

.resend-text {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #6c757d;
}

.resend-link {
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    text-decoration: none;
    background-color: none !important;
    border: none;
}

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

#countdown {
    color: var(--primary-color);
}


/* ========================== */
.form-title{
    color:#640e3d;
    font-weight: 600;
    font-size: 2rem;
}

.form-container{
    width: 80% !important;
    margin: 0 auto;
    margin-top:50px;
    margin-bottom:20px;
}

.info-text {
    font-size: 1.1rem;
    color: #6c757d;
}

@media only screen and (max-width:600px){
    .form-container{
        width: 100% !important;
    }

    .login-container {
    width:97% !important;
    margin:auto;
    }

    .verify-container {
        width:96%;
    }
}