/* Reset en basis */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #f9f9f9;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

/* Container */
.container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-width: 480px;
  width: 100%;
}

/* Titel */
.container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #222;
  text-align: center;
}

/* Subtekst */
.container p {
  margin-bottom: 30px;
  color: #555;
  font-size: 1rem;
  text-align: center;
}

/* Formulier */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Labels */
label {
  font-weight: 600;
  font-size: 1rem;
  color: #444;
  margin-bottom: 6px;
  display: block;
}

/* Input velden */
input[type="text"],
input[type="file"] {
  padding: 12px 14px;
  font-size: 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  width: 100%;
}

input[type="text"]:focus,
input[type="file"]:focus {
  outline: none;
  border-color: #00b894;
  box-shadow: 0 0 5px rgba(0,184,148,0.5);
}

/* Progress bar */
progress {
  width: 100%;
  height: 12px;
  border-radius: 8px;
  overflow: hidden;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 20px;
}

progress::-webkit-progress-bar {
  background-color: #eee;
}

progress::-webkit-progress-value {
  background-color: #00b894;
  border-radius: 8px;
}

/* Google reCAPTCHA */
.g-recaptcha {
  margin: 0 auto 24px;
  display: flex;
  justify-content: center;
}

/* Knop */
button[type="submit"] {
  background-color: #00b894;
  border: none;
  color: white;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

button[type="submit"]:hover {
  background-color: #019875;
}

/* Resultaat tekst */
#result {
  margin-top: 20px;
  font-weight: 600;
  text-align: center;
  color: #333;
}

/* Responsive */
@media (max-width: 480px) {
  .container {
    padding: 20px 25px;
  }
  
  button[type="submit"] {
    font-size: 1rem;
    padd


<style>
  body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
  }

  .login-container {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
	margin-top: 100px;
  }

  .google-login-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 4px;
    background-color: white;
    border: 1px solid #ddd;
	 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-weight: 500;
    color: #555;
    text-decoration: none;
    font-size: 16px;
    transition: box-shadow 0.3s ease;
  }

  .google-login-btn:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .google-login-btn img {
    height: 20px;
    width: 20px;
    margin-right: 12px;
  }
</style>
