/* Stargio - Login */
.login {
    width: min(92%, 420px);
    margin: 4rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.login h1 {
    margin-bottom: 0.4rem;
    color: #111827;
    font-size: 1.8rem;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
}

.login-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.login label {
    display: block;
    color: #374151;
    font-weight: 600;
    font-size: 0.88rem;
    margin-bottom: 0.35rem;
    margin-top: 0.8rem;
}

.login input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #111827;
    font: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login input:focus {
    outline: none;
    border-color: #ff5e00;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(255,94,0,0.12);
}

.login button {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff5e00, #ff2a5f);
    color: white;
    font: inherit;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(255,94,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.login button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(255,94,0,0.3);
}

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

.login-footer-text {
    text-align: center;
    margin-top: 1.5rem;
    color: #6b7280;
    font-size: 0.87rem;
}

.login-footer-text a { color: #ff5e00; font-weight: 600; text-decoration: none; }
.login-footer-text a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .login { margin: 2rem auto; padding: 1.75rem 1.25rem; }
    .login h1 { font-size: 1.5rem; }
}
