.login-sidebar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--brand-orange) 100%);
    position: relative;
}

.custom-input {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(72, 76, 237, 0.1);
    outline: none;
}

.btn-close-login {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 10;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: 0.3s;
}

.btn-close-login:hover {
    background: #e9ecef;
    color: rgb(173, 30, 30);
}

.modal-content::-webkit-scrollbar {
    display: none;
}

.continue{
    color: #fff;
    background-color: var(--brand-orange);
}
.continue:hover{
    color: #fff;
    background-color: var(--brand-orange);
}

.continue-email{
    color: #333;
    background-color: transparent;
    border: 1px solid #333;
}

.continue-email:hover{
    border: 1px solid var(--primary-color);
}



/* new post propertyy */

.otp-modal {
    border-radius: 16px;
    border: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.otp-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.otp-box {
    width: 45px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    outline: none;
}

.otp-box:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.15);
}

.otp-btn {
    height: 48px;
    font-weight: 600;
    border-radius: 10px;
    background-color: var(--brand-orange) !important;
    color: #fff !important;
    border: none !important;
    transition: 0.3s ease;
}

.otp-btn:hover,
.otp-btn:focus,
.otp-btn:active {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
