* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: url('bossbackground.jpg');
    background-size: 35%;
    background-position: center 5%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #e6ecf2;
}

body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

.login-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: rgba(15, 20, 27, 0.82);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid #1f2935;
    border-radius: 14px;
    padding: 44px 40px 36px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.wordmark {
    text-align: center;
    margin-bottom: 6px;
}

.monogram {
    display: block;
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #e6ecf2;
}

.fullname {
    display: block;
    margin-top: 14px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #97a4b3;
}

.subtitle {
    color: #5d6c7e;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    text-align: center;
    margin: 18px 0 32px;
}

.input-group {
    margin-bottom: 18px;
}

label {
    display: block;
    color: #97a4b3;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

input[type="password"] {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #1f2935;
    background: #0b0e13;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Manrope', sans-serif;
    color: #e6ecf2;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="password"]:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(22, 196, 122, 0.15);
}

button {
    width: 100%;
    padding: 14px;
    background: #4169E1;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}

button:hover {
    background: #5a82e8;
    box-shadow: 0 0 24px rgba(22, 196, 122, 0.35);
}

button:active {
    transform: translateY(1px);
}

.error {
    color: #e0524d;
    font-size: 13px;
    margin-top: 14px;
    text-align: center;
    min-height: 20px;
    font-weight: 500;
}
