/* Center the whole thing */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

/* Card look */
.auth-card {
    background: #ffffff;
    padding: 40px;
    width: 350px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Title */
.auth-card h1 {
    text-align: center;
    margin-bottom: 30px;
}

/* Form groups */
.form-auth-div {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Labels */
.form-auth-div label {
    font-size: 1em;
    margin-bottom: 6px;
}

/* Inputs */
.form-auth-div input {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1em;
    transition: border-color 0.2s, box-shadow 0.2s;
}

/* Input focus effect */
.form-auth-div input:focus {
    outline: none;
    border-color: #4a90e2;
    box-shadow: 0 0 5px rgba(74, 144, 226, 0.4);
}

/* Error message */
.form-auth-div span {
    color: red;
    font-size: 0.9em;
    margin-top: 4px;
}

/* Button */
.auth-button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #4a90e2;
    color: white;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

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

.auth-button:active {
    transform: scale(0.98);
}
