/* Global styles */

body {
    font-family: "Poppins", sans-serif;
    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}


/* Auth container */

.auth-container {
    background: #1b1b1b;
    padding: 40px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    text-align: center;
}

.auth-container h1 {
    margin-bottom: 20px;
    color: #e60000;
}


/* Form inputs */

.auth-container input,
.auth-container select {
    width: 94%!important;
    padding: 12px;
    margin: 8px 0;
    border: none;
    border-radius: 5px;
    background: #2a2a2a;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.auth-container input:focus,
.auth-container select:focus {
    border: 1px solid #e60000;
}


/* Button */

.auth-container button {
    width: 100%;
    padding: 12px;
    background: #e60000;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
    transition: background 0.3s;
}

.auth-container button:hover {
    background: #c40000;
}


/* Link text */

.auth-container p {
    margin-top: 15px;
    font-size: 14px;
}

.auth-container a {
    color: #e60000;
    text-decoration: none;
}

.auth-container a:hover {
    text-decoration: underline;
}