/* דף התחברות – טופס מותאם לאתר */
.login-page {
    width: 100%;
    padding-bottom: 24px;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.98);
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}

.login-intro {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0 0 24px;
}

.login-form {
    max-width: 320px;
    margin: 0 auto 20px;
}

.login-field {
    margin-bottom: 16px;
}

.login-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.login-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    transition: border-color 0.2s, background 0.2s;
    box-sizing: border-box;
}

.login-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.login-input:hover {
    border-color: rgba(255, 255, 255, 0.22);
}

.login-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}

.login-actions {
    margin-top: 20px;
}

.btn-login {
    position: relative;
    display: inline-block;
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    transition: opacity 0.2s, transform 0.2s;
}

.btn-login::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0.12) 55%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.btn-login:hover::before,
.btn-login:focus::before {
    transform: translateX(100%);
}

.btn-login:hover,
.btn-login:focus {
    opacity: 0.95;
    transform: translateY(-1px);
}

.btn-login:active {
    transform: translateY(0);
}

.login-register-hint {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0 0 24px;
    text-align: center;
}

.login-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.login-link:hover {
    color: #fff;
}
