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

body {
    background-color: #000;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    overflow: hidden;
    position: relative;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 10;
    width: 100%;
    padding: 20px;
    position: relative;
    min-height: 100vh;
    transition: opacity 0.5s ease;
    transform: none !important; /* Prevent any unwanted transforms */
    text-align: center; /* Keep all inner content centered */
}

.title {
    color: white;
    font-size: 80px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    font-family: Arial, Helvetica, sans-serif;
    text-transform: none;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
    position: absolute;
    top: 25%;
    transform: translateY(-50%);
    transition: opacity 0.5s ease;
    transform-style: preserve-3d;
}

/* Media queries for responsive title size */
@media (max-width: 768px) {
    .title {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 36px;
        letter-spacing: 1px;
    }
}

.login-container {
    position: relative;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px;
    width: 350px;
    text-align: center;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: opacity 0.5s ease;
    transform: none !important; /* Prevent unwanted transforms */
}

.login-container.submitting {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
}

h1 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

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

.login-form input {
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.login-form input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

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

.login-form button {
    padding: 12px;
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.login-form button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.error-message {
    color: #ff5555;
    margin-top: 15px;
    font-size: 14px;
    text-shadow: 0 0 5px rgba(255, 0, 0, 0.3);
} 