/* === Global Styles === */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
}

/* === Header === */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #1f1f1f;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-container img {
    height: 50px;
}

.logo-container h1 {
    margin: 0;
    font-size: 1.8em;
}

.logo-container h1 a {
    color: #ffffff;
    text-decoration: none;
}

nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1em;
    padding: 10px;
}

nav a:hover {
    color: #1db954;
}

/* === Buttons === */
button {
    background-color: #1db954;
    color: #ffffff;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #148f44;
}

/* === Forms === */
form {
    max-width: 400px;
    margin: 20px auto;
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

form input, form select, form textarea, form button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

form input, form select, form textarea {
    background-color: #2c2c2c;
    color: #ffffff;
}

/* === Google reCAPTCHA Styling === */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* === Footer === */
footer {
    text-align: center;
    padding: 20px;
    background-color: #1f1f1f;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}
/* === Social Login Section === */
.social-login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

.social-login-container p {
    font-size: 1em;
    margin-bottom: 10px;
}

.google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #121212;
    border-radius: 5px;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    width: 100%;
    max-width: 300px;
    transition: background-color 0.3s;
}

.google-button img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.google-button:hover {
    background-color: #e0e0e0;
}



/* Center align the already-have-account text */
.already-have-account {
    text-align: center;
    margin-top: 15px;
}

/* Center align the no-account text */
.no-account {
    text-align: center;
    margin-top: 15px;
}
/* Center de titels op de login- en registratiepagina */
.register-title, .centered-title {
    text-align: center;
    display: block;
    width: 100%;
}

.centered-text {
    text-align: center;
    display: block;
    margin-top: 15px;
}

