/* auth.css */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #1f1c2c, #928dab);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: white;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    text-align: center;
}

.auth-box h1 {
    margin: 0 0 10px;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
}

.auth-box p {
    margin: 0 0 20px;
    font-size: 14px;
    color: #e0e0e0;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 14px;
    outline: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.input-group input:focus {
    border-bottom: 2px solid #FFD700;
}

.auth-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #FFD700;
    color: black;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-button:hover {
    background-color: #e0c200;
}

.switch-auth {
    margin-top: 20px;
    font-size: 14px;
}

.switch-auth a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.switch-auth a:hover {
    text-decoration: underline;
}
