/* ================== /css/index.css ================== */
/* תיאור: עיצוב דף התחברות */

/* עיצוב כללי */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #4a90e2 0%, #357ABD 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.login-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.login-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 600;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    outline: none;
    border-color: #357ABD;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #357ABD;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #285a8f;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border-radius: 6px;
    padding: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.links {
    margin-top: 20px;
    text-align: center;
}

.links a {
    color: #3498db;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.links a:hover {
    text-decoration: underline;
}

/* עיצוב מודל */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px;
    border-radius: 12px;
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

.modal-content h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 22px;
}

.modal-content p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 20px;
}

.close {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.contact-btn {
    background: #357ABD;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background: #285a8f;
}

/* עיצוב הודעה מושבתת */
.disabled-notice {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.disabled-notice h1 {
    font-size: 24px;
    margin-bottom: 10px;
}

.disabled-notice p {
    font-size: 16px;
    line-height: 1.5;
}

/* ================== סוף קובץ /css/index.css ================== */