@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

/* RTL and Base Styles */
.sm-rtl {
    direction: rtl;
    font-family: Vazirmatn, sans-serif;
    color: #333;
    max-width: 1400px;
    margin: 20px auto;
    padding: 0 20px;
}

.sm-rtl * {
    font-family: Vazirmatn, sans-serif;
}

.sm-rtl input,
.sm-rtl input::placeholder,
.sm-rtl select,
.sm-rtl textarea,
.sm-rtl button {
    font-family: Vazirmatn, sans-serif;
}

html{
    background : #0999a938;
}
body {
    font-family: Tahoma, sans-serif;
    background-color: transparent !important;
    margin: 0;
    padding: 0;
}
.shift-login-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 380px;
    width: fit-content;
    min-width: 340px;
    margin: 60px auto;
    padding: 36px 28px 32px 28px;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(37,56,165,0.18), 0 1.5px 8px rgba(0,0,0,0.10);
    background: #00525c;
    color: white;
    direction: rtl;
    text-align: right;
    transition: box-shadow 0.25s;
}
.shift-login-page h2 {
    color: white;
    text-align: center;
    width: 100%;
    font-weight: bold;
}
.shift-login-page label {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    font-weight: 600;
}
.shift-login-page input[type="text"],
.shift-login-page input[type="password"],
.shift-login-page .login-button {
    width: 100%;
    box-sizing: border-box;
}
.shift-login-page input[type="text"],
.shift-login-page input[type="password"] {
    padding: 8px 10px;
    border-radius: 8px;
    border: none;
    margin-bottom: 16px;
    font-size: 1rem;
}
.login-button {
    background-color: white;
    color: #099AA9;
    border-radius: 12px;
    width: 100%;
    padding: 12px 0;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37,56,165,0.10);
    transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.18s;
}
.login-button:hover {
    background: #f0f0f0;
    color: #099AA9;
    box-shadow: 0 6px 18px rgba(37,56,165,0.18);
    transform: translateY(-2px) scale(1.03);
}
.shift-toast {
    min-width: 250px;
    padding: 12px 20px;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
}
.shift-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.shift-toast.success { background-color: #28a745; }
.shift-toast.error   { background-color: #dc3545; }
.shift-toast.warning { background-color: #ffc107; color: #000; }
