/* استایل فیلدهای فرم که با سایت شما ست شود */
input[type="text"], 
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box; /* برای جلوگیری از بهم ریختگی عرض */
}

input[type="text"]:focus, 
input[type="password"]:focus {
    border-color: #082193;
}

.login-card{

    width:min(90%, 400px);

    padding:30px;

    background:#fff;

    border-radius:12px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

    margin:auto;
}
@media (max-width:768px){

    .login-card{

        width:92%;

        padding:24px;
    }
}

@media (max-width:480px){

    .login-card{

        width:95%;

        padding:18px;
    }
}
.login-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:70vh;

    padding:15px;
}

/* استایل دکمه برای حالت رسپانسیو 
button[type="submit"]:not(.glass-btn) {
    width: 100%;
    padding: 12px;
    background: #082193;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    
    transition: background 0.3s;
}

button[type="submit"]:not(.glass-btn):hover {
    background: #061a7a;
}*/

.default-submit{
    width:100%;
    padding:12px;
    background:#082193;
    color:white;
    border:none;
    border-radius:8px;
}



/* استایل کلی باکس پیام */
.alert-box{

    margin: 10px auto;
    padding: 15px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
   

}
/* موفق */

.success{
    background:#d4edda;
    color:#155724;
    border-color:#c3e6cb;
}

/* خطا */

.error{
    background:#f8d7da;
    color:#721c24;
    border-color:#f5c6cb;
}

/* هشدار */

.warning{
    background:#fff3cd;
    color:#856404;
    border-color:#ffeeba;
}

/* اطلاع */

.info{
    background:#d1ecf1;
    color:#0c5460;
    border-color:#bee5eb;
}

/* رنگ‌بندی بر اساس نوع پیام */
.alert-success { background: #d4edda; color: #155724; border-color: #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border-color: #f5c6cb; }

/* دکمه بستن دستی */
.close-btn {
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    margin-left: 10px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
