/* Reset and basic styling */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: url('../images/PPALBACK.png') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container for auth pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Auth card (login/signup box) */
.auth-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Heading */
.auth-card h2 {
    text-align: center;
    color: #333;
    margin: 0;
}

/* Form layout */
.auth-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Input fields */
.auth-card input {
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.auth-card input:focus {
    border-color: #0077cc;
    outline: none;
}

/* Button */
.auth-card button {
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-color: #0077cc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-card button:hover {
    background-color: #005fa3;
}

/* Text and link */
.auth-card p {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
}

.auth-card a {
    color: #0077cc;
    text-decoration: none;
}

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