﻿/* wwwroot/css/velzone-auth.css */

/* استایل‌های عمومی صفحه ورود */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-full-page-content {
    min-height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
}

.auth-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
}

.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* آیکون‌ها */
.auth-logo {
    height: 36px;
}

.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* فرم */
.auth-form .form-control {
    border-radius: 0.5rem 0 0 0.5rem;
}

.auth-form .input-group-text {
    border-radius: 0 0.5rem 0.5rem 0;
    background-color: #f8f9fa;
}

.auth-form .input-group .btn-outline-secondary {
    border-radius: 0 0.5rem 0.5rem 0;
}

/* دکمه ورود */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #5a6fd6 0%, #6a4292 100%);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

/* چک‌باکس */
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #667eea;
    border-color: #667eea;
}

/* ریسپانسیو */
@@media (max-width: 767.98px) {
    .auth-full-page-content {
        min-height: 100vh;
        padding: 30px 20px !important;
    }
}
