/* Reset body to work with navbar/footer */
body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Main content wrapper to center the login form */
body>.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px - 200px);
    /* Subtract navbar and footer height */
    padding: 40px 20px;
}

h2 {
    color: #D4AF37;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
}

.forms {
    background: #1a1a1a;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    border: 1px solid #333;
}

.form {
    display: none;
}

.form.active {
    display: block;
}

input {
    width: 100%;
    margin: 10px 0;
    padding: 12px 16px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    color: #D4AF37;
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

input::placeholder {
    color: #666;
}

button {
    width: 100%;
    padding: 12px;
    background: #D4AF37;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

button:hover {
    background: #C19B2E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

button:active {
    transform: translateY(0);
}

p {
    text-align: center;
    color: #a0a0a0;
    font-size: 14px;
    margin-top: 20px;
}

p span {
    color: #D4AF37;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s ease;
}

p span:hover {
    color: #fff;
    text-decoration: underline;
}