/* Galaxy Note Web — Login Form inside Welcome Card */

.welcome-card--web {
    min-width: 420px;
    padding: 48px 40px 36px !important;
}

.gn-login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
}

.gn-login-input {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e2e8f0;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
    font-family: inherit;
}

.gn-login-input:focus {
    border-color: rgba(56, 189, 248, 0.5);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

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

.gn-login-error {
    color: #ef4444;
    font-size: 0.82rem;
    min-height: 18px;
    text-align: left;
    padding-left: 4px;
}

/* Power button as submit — wider for text */
.power-btn--wide {
    width: 100%;
    height: auto !important;
    padding: 14px 24px !important;
    border-radius: 14px !important;
    font-size: 1rem !important;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    margin-top: 4px;
}

.power-btn--wide:disabled {
    opacity: 0.5;
    cursor: wait;
}

.gn-login-toggle {
    text-align: center;
    margin-top: 8px;
}

.gn-login-toggle a {
    color: rgba(56, 189, 248, 0.6);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}

.gn-login-toggle a:hover {
    color: #38bdf8;
}

/* Light mode support */
body.light-mode .gn-login-input {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.12);
    color: #1e293b;
}

body.light-mode .gn-login-input::placeholder {
    color: rgba(0, 0, 0, 0.3);
}

body.light-mode .gn-login-input:focus {
    border-color: rgba(56, 189, 248, 0.5);
}
