body {
    margin: 0;
    padding: 0;
    background: url('../Images/Miscellaneous/Background_Foggy.png') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.authContainer {
    background: rgba(0, 0, 0, 0.75);
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(94, 42, 108, 0.7);
    text-align: center;
}

h1 {
    margin-bottom: 20px;
}

.form label {
    display: block;
    margin: 10px 0 5px;
    text-align: left;
}

.form input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 5px;
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #5e2a6c;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #a018c5;
}

.pageLinking {
    color: #fff;
}