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

body {
    font-family: "Lexend", sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    min-height: 125vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    overflow: hidden;
    zoom: 0.8;
}

.login-container {
    width: 100%;
    height: 125vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.login-card {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid #333;
    border-radius: 0;
    padding: 60px 50px;
    width: 450px;
    box-shadow: 0 0 50px rgba(252, 0, 0, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}



.login-header {
    text-align: center;
    margin-bottom: 60px;
}

.login-logo {
    font-family: "New Rocker", cursive;
    font-size: 3rem;
    font-weight: 400;
    background: linear-gradient(90deg, #740000, #fc0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.login-subtitle {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 0.9rem;
    color: #888;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.login-form-container {
    width: 100%;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 0.8rem;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid #444;
    border-radius: 0;
    padding: 15px;
    font-family: "Lexend", sans-serif;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #fc0000;
    box-shadow: 0 0 10px rgba(252, 0, 0, 0.3);
    background: rgba(50, 50, 50, 0.9);
}

.login-btn {
    position: relative;
    background: transparent;
    border: 2px solid #fc0000;
    padding: 15px 30px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.login-btn .btn-bg {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #740000, #fc0000);
    transition: left 0.3s ease;
    z-index: -1;
}

.login-btn:hover .btn-bg {
    left: 0;
}

.login-btn span {
    position: relative;
    z-index: 10;
    pointer-events: none;
}

.login-btn:hover {
    color: white;
}

.error-message {
    background: rgba(252, 0, 0, 0.1);
    border: 1px solid #fc0000;
    color: #fc0000;
    padding: 10px;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.admin-link {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.admin-btn {
    background: transparent;
    border: 1px solid #666;
    color: #888;
    padding: 10px 20px;
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    z-index: 100;
    position: relative;
}

.admin-btn:hover {
    border-color: #fc0000;
    color: #fc0000;
    background: rgba(252, 0, 0, 0.05);
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000;
}

.loading-overlay.show {
    display: flex;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 2px solid #333;
    border-top: 2px solid #fc0000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loading-text {
    font-family: "Special Gothic Expanded One", sans-serif;
    font-size: 1rem;
    color: #fc0000;
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .login-card {
        width: 90%;
        padding: 40px 30px;
    }

    .login-logo {
        font-size: 2.5rem;
    }
}