.container {
    display: block;
    grid-template-columns: none;
    max-width: 700px;
    width: 80%;
    position: relative;
    z-index: 10;
    background: rgba(15, 20, 40, 0.85);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(0, 255, 157, 0.1);
}

.container h1 {
    margin: 0 0 15px 0;
    font-size: 36px;
    background: linear-gradient(135deg, #00ff9d, #00c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    text-align: left;
}

/* Authentication pages styling */

.auth-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: rgba(0, 20, 40, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    backdrop-filter: blur(10px);
}

.auth-container h1 {
    text-align: center;
    color: #00ff9d;
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: #00ff9d;
    font-size: 14px;
    font-weight: 500;
}

.form-group input {
    padding: 10px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 157, 0.3);
    background: rgba(0, 20, 40, 0.8);
    color: #ffffff;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #00ff9d;
    box-shadow: 0 0 10px rgba(0, 255, 157, 0.3);
}

.help-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -4px;
}

.help-text ul {
    margin: 4px 0;
    padding-left: 20px;
}

.error-message {
    color: #ff5555;
    font-size: 13px;
    margin-top: -4px;
}

.error-message ul {
    margin: 4px 0;
    padding-left: 20px;
}

.btn-primary {
    padding: 12px;
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.5);
    border-radius: 8px;
    color: #00ff9d;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
}

.btn-primary:hover {
    background: rgba(0, 255, 157, 0.2);
    border-color: #00ff9d;
    box-shadow: 0 0 15px rgba(0, 255, 157, 0.4);
}

.auth-links {
    margin-top: 30px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 255, 157, 0.2);
}

.auth-links p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 8px 0;
}

.auth-links a {
    color: #00ff9d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #00ffdd;
    text-decoration: underline;
}

/* Messages styling */
.messages {
    margin-bottom: 20px;
}

.message {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.message.success {
    background: rgba(0, 255, 157, 0.1);
    border: 1px solid rgba(0, 255, 157, 0.3);
    color: #00ff9d;
}

.message.error {
    background: rgba(255, 85, 85, 0.1);
    border: 1px solid rgba(255, 85, 85, 0.3);
    color: #ff8888;
}

.message.info {
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.3);
    color: #00c8ff;
}

.message.warning {
    background: rgba(255, 200, 0, 0.1);
    border: 1px solid rgba(255, 200, 0, 0.3);
    color: #ffcc00;
}
