/* Premium Login Styles for Genesis Cruise Portals */
.grp-login-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-image: url('https://images.unsplash.com/photo-1548574505-5e239809ee19?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: fixed;
    inset: 0;
    z-index: 99999;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    overflow-y: auto;
}

.grp-login-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.9) 100%);
    z-index: 1;
}

.grp-login-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.grp-login-logo {
    text-align: center;
    margin-bottom: 24px;
}

.grp-login-logo img {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.grp-login-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.grp-login-sub {
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    font-size: 14px;
    margin-bottom: 32px;
}

.grp-login-field {
    margin-bottom: 20px;
}

.grp-login-field label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.grp-login-field input[type="text"],
.grp-login-field input[type="password"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.grp-login-field input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.grp-pw-wrap {
    position: relative;
}

.grp-pw-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
}

.grp-pw-eye:hover {
    color: #ffffff;
}

.grp-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    cursor: pointer;
    margin-bottom: 24px;
}

.grp-remember input {
    accent-color: #3b82f6;
}

.grp-login-btn {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.grp-login-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.grp-login-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.grp-login-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #fca5a5;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 20px;
    text-align: center;
}

/* Material Symbols sizing */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
