﻿.body-login {
 
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    color: #333;
}

.containerLogin {
    width: 100%;
    max-width: 650px;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    text-align: center;
}

h6 {
    color: #fff !important;
}


h1 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 24px;
}

.description {
    color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.code-input-container {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
    direction: ltr;
}

.code-input {
    width: 55px;
    height: 60px;
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    transition: all 0.3s;
    color: #2c3e50;
}

    .code-input:focus {
        outline: none;
        border-color: #333;
    }

    .code-input.filled {
        border-color: #2ecc71;
        background-color: rgba(46, 204, 113, 0.05);
        color: #333;
    }

.submit-btn {
    background-color: #333;
    color: white !important;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    font-weight: 600;
    transition: all 0.3s;
    margin-bottom: 20px;
}

    .submit-btn:hover {
        transform: translateY(-3px);
        background-color: #333;
    }

    .submit-btn:active {
        transform: translateY(-1px);
    }

.submit-btn.disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.timer {
    font-size: 16px;
    margin-bottom: 20px;
    color: #7f8c8d;
}

.resend-btn {
    background: none;
    border: none;
    color: var(--main-color-three);
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s;
}

    .resend-btn:hover {
        background-color: rgba(37, 117, 252, 0.1);
    }

    .resend-btn:disabled {
        color: #bdc3c7;
        cursor: not-allowed;
    }

.message {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
    display: none;
}

.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #27ae60;
    display: block;
}

.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #c0392b !important;
    display: block;
    padding: 5px;
}

.mobileForm {
    font-size: 20px !important;
    text-align: center;
    font-weight: 500;
}

.hint {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
    text-align: right;
    direction: rtl;
}

@media (max-width: 500px) {
    .container {
        padding: 30px 20px;
    }

    .code-input {
        width: 45px;
        height: 50px;
        font-size: 24px;
    }

    h1 {
        font-size: 22px;
    }
}

@media (max-width: 380px) {
    .code-input {
        width: 40px;
        height: 45px;
        font-size: 20px;
    }
}
