/* רקע כללי */
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background: linear-gradient(135deg, #0A1128 0%, #173F5F 100%);
}

/* מעטפת */
.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px;
}

/* כרטיס ההתחברות */
.login-card {
    width: 380px;
    padding: 35px 30px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.35);
    text-align: center;
}

/* לוגו */
.logo-container {
    margin-bottom: 15px;
}
.logo-img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
}

/* כותרות */
.title {
    margin: 10px 0 5px;
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
}

.subtitle {
    color: #cdd7e4;
    font-size: 14px;
    margin-bottom: 25px;
}

/* שדות */
.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.input-group input::placeholder {
    color: #d7d7d7;
}

/* כפתור */
.login-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;

    background: linear-gradient(90deg, #0096c7 0%, #00b4d8 100%);
    color: #ffffff;
    transition: 0.25s ease;
}

.login-btn:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* שכחת סיסמה */
.forgot-link {
    margin-top: 12px;
    display: block;
    color: #aad9ff;
    font-size: 13px;
    text-decoration: none;
}
.forgot-link:hover {
    text-decoration: underline;
}

/* פוטר */
.powered {
    margin-top: 25px;
    font-size: 12px;
    color: #bfc9d7;
}
