/* static/css/auth.css */
.auth-container {
    min-height: 100vh;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.auth-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.auth-tabs {
    display: flex;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
}

.auth-tab {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-tab.active {
    color: #ff5858;
    border-bottom: 2px solid #ff5858;
    margin-bottom: -2px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ff5858;
    box-shadow: 0 0 0 2px rgba(255, 88, 88, 0.1);
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.forgot-password {
    float: right;
    color: #ff5858;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
}

#auth-messages {
    margin: 1rem 0;
    padding: 0.75rem;
    border-radius: 6px;
    display: none;
}

#auth-messages.error {
    display: block;
    background: #fff5f5;
    color: #e53e3e;
    border: 1px solid #feb2b2;
}

#auth-messages.success {
    display: block;
    background: #f0fff4;
    color: #38a169;
    border: 1px solid #9ae6b4;
}


/* static/css/auth.css */
.contact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-header h2 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 2.5rem;
    color: #032535;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.contact-columns {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5858;
    box-shadow: 0 0 0 2px rgba(255, 88, 88, 0.1);
}

.info-card {
    background: rgba(255, 88, 88, 0.05);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid #ff5858;
}

.info-card h3 {
    font-family: "Rajdhani", sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    color: #032535;
    margin-bottom: 1.5rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: #666;
}

.info-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff5858;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

.form-disclaimer a {
    color: #ff5858;
    text-decoration: none;
}

.form-disclaimer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .contact-box {
        padding: 2rem;
    }

    .contact-columns {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 1.5rem;
    }

    .contact-header h2 {
        font-size: 1.75rem;
    }
}