* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #000000;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-feature-settings: 'kern' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 20px;
}

.login-box {
    background: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    padding: 40px 35px;
    position: relative;
}

.login-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #cc0000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-box:focus-within::before {
    opacity: 1;
}

.logo-section {
    text-align: center;
    margin-bottom: 35px;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -1px;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.main-title span {
    color: #cc0000;
    position: relative;
    display: inline-block;
}

.main-title span::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #cc0000, transparent);
    opacity: 0.3;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #cc0000, transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.login-form {
    width: 100%;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #888888;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    background: #000000;
    border: 1px solid #1a1a1a;
    border-radius: 0;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.input-group input:focus {
    border-color: #cc0000;
    background: #0a0a0a;
    box-shadow: 0 0 0 2px rgba(204, 0, 0, 0.1);
}

.input-group input::placeholder {
    color: #444444;
}

.login-button {
    width: 100%;
    padding: 14px;
    background: #cc0000;
    border: none;
    border-radius: 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.login-button:hover {
    background: #b30000;
    box-shadow: 0 2px 10px rgba(204, 0, 0, 0.3);
}

.login-button:active {
    background: #990000;
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .login-box {
        padding: 30px 25px;
    }
    
    .main-title {
        font-size: 36px;
        letter-spacing: -0.5px;
    }
}

