/* Import THICCCBOI fonts */
@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-BLACK.TTF') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-BOLD.TTF') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-SEMIBOLD.TTF') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-MEDIUM.TTF') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-REGULAR.TTF') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'THICCCBOI';
    src: url('../fonts/THICCCBOI-LIGHT.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

.login-simple-text {
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #e5e7eb;
    text-align: center;
    margin-bottom: 20px;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EEF2FD;
}

.login-card {
    background: #131530;
    padding: 2.5rem;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-title {
    font-family: 'THICCCBOI', 'Orbitron', monospace;
    font-size: 2em;
    font-weight: 900;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 6px;
    line-height: 1.2;
    width: 100%;
    max-width: none;
    white-space: nowrap;
    margin: 0;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    font-family: 'THICCCBOI', 'Exo 2', sans-serif;
    color: #0ddcae;
    font-size: 1.2em;
    font-weight: 800;
    width: 100%;
    max-width: none;
    word-wrap: break-word;
    line-height: 1.4;
    letter-spacing: 2px;
    text-align: center;
    white-space: nowrap;
    margin: 0;
    margin-bottom: 1.5rem;
}

.login-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo img {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.login-logo img:hover {
    opacity: 1;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 480px) {
    .login-card {
        max-width: 90%;
        padding: 2rem;
    }
    
    .login-title {
        font-size: 1.6em;
        letter-spacing: 4px;
    }
    
    .login-subtitle {
        font-size: 1em;
        letter-spacing: 1.5px;
    }
    
    .login-logo img {
        max-width: 100px;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-family: 'THICCCBOI', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 700;
}

.form-input {
    font-family: 'THICCCBOI', sans-serif;
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #333;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #3CBBB2;
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.login-btn {
    font-family: 'THICCCBOI', sans-serif;
    width: 100%;
    padding: 0.75rem;
    background-color: #3CBBB2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-2px);
    background-color: #27a098;
}

.flash-message {
    font-family: 'THICCCBOI', sans-serif;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 400;
}

.flash-error {
    background: rgba(197, 48, 48, 0.2);
    color: #ff6b6b;
    border: 1px solid rgba(197, 48, 48, 0.3);
}

.flash-info {
    background: rgba(13, 220, 174, 0.2);
    color: #3CBBB2;
    border: 1px solid #1b7771;
} 