﻿:root {
    --ship-primary: #001f3f;
    --ship-bg: #f5f5f5;
    --ship-border: #e2e8f0;
    --ship-muted: #64748b;
}

body {
    font-family: "Public Sans", sans-serif;
    background: var(--ship-bg);
    min-height: 100vh;
}

.login-shell {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
/*    padding: 3rem;*/
    background: linear-gradient(180deg, #f5f5f5 0%, #eef2f7 100%);
}

.login-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border: 1px solid rgba(0, 31, 63, 0.08);
    border-radius: 0.75rem;
    box-shadow: 0 20px 35px rgba(0, 31, 63, 0.08);
    overflow: hidden;
}

.login-hero {
    position: relative;
    height: 156px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ship-primary);
}

    .login-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.2;
        background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
        background-size: 24px 24px;
    }

.login-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.login-hero-label {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 0.25rem; 
}

.login-body {
    padding: 2.5rem 2.25rem 2.75rem;
}

.login-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.login-input-wrap {
    position: relative;
}

.login-input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 20px;
}

.login-input {
    width: 100%;
    border: 1px solid var(--ship-border);
    border-radius: 0.5rem;
    background: #f8fafc;
    color: #0f172a;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    transition: all 0.2s;
}

    .login-input:focus {
        outline: none;
        border-color: var(--ship-primary);
        box-shadow: 0 0 0 0.2rem rgba(0, 31, 63, 0.15);
        background: #fff;
    }

.login-remember {
    color: var(--ship-muted);
    font-size: 0.875rem;
}

.login-link {
    color: var(--ship-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.875rem;
}

    .login-link:hover {
        text-decoration: underline;
    }

.login-footer {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
    color: #64748b;
}
