/*Index*/
* {
    font-family: 'Cairo', sans-serif;
}

body {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    direction: ltt;
}

.login-container {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 2rem auto;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.login-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #666;
    font-weight: 200;
    margin-bottom: 2rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
    background: white;
}
.input-group{
    direction: ltr;
}
.input-group-text {
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid #e9ecef;
    border-left: none;
    border-radius: 0 15px 15px 0;
    color: #667eea;
}

.btn-login {
    background: linear-gradient(135deg, #286683, #105b07c4);
    border: none;
    border-radius: 15px;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

.btn-login:active {
    transform: translateY(0);
}

.alert {
    border-radius: 15px;
    border: none;
    padding: 1rem 1.25rem;
}

.test-credentials {
    background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.test-credentials h6 {
    color: #667eea;
    font-weight: 600;
}

.credential-item {
    background: white;
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.system-status {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgb(44 100 127 / 22%);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.status-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 0.5rem;
}

.status-online {
    background-color: #28a745;
    box-shadow: 0 0 10px rgba(40, 167, 69, 0.5);
}

.footer-text {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}

.version-info {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgb(38 102 129);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.password-toggle {
    cursor: pointer;
    color: #667eea;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .login-container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }

    .company-logo {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/*Index*/


  