/* Login Page Specific Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-card {
    width: 100%;
    max-width: 440px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

/* Subtle organic gradient inside the glass card */
.login-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(216, 106, 81, 0.08) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 32px;
    margin-bottom: 8px;
}

.login-subtitle {
    color: var(--swiss-muted);
    font-size: 15px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--swiss-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.login-btn-group {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.login-btn-group .btn {
    flex: 1;
}

.back-link {
    display: inline-block;
    margin-top: 24px;
    font-size: 14px;
    color: var(--swiss-muted);
    text-align: center;
    width: 100%;
}

.back-link:hover {
    color: var(--swiss-text);
}

/* Big Tech Modern Input Wrapper for Code */
.code-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.code-input-wrapper .form-input {
    padding-right: 100px; /* Make room for the button */
}

.btn-text {
    position: absolute;
    right: 8px;
    background: transparent;
    border: none;
    color: var(--swiss-accent);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.btn-text:hover {
    background: rgba(216, 106, 81, 0.1);
}

.btn-text:active {
    background: rgba(216, 106, 81, 0.15);
}

/* Elegant Login Tips (Vercel/Stripe style) */
.login-tips {
    margin-top: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--swiss-muted);
}

.tip-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--swiss-muted);
    opacity: 0.7;
}

.tip-item strong {
    color: var(--swiss-text);
    font-weight: 500;
}
