    .google-login-section {
      min-height: 70vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #121212;
      background-image: radial-gradient(#2a2a2a 1px, transparent 1px);
      background-size: 20px 20px;
      padding: 40px 20px;
    }

    .login-box {
      text-align: center;
      max-width: 400px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logotipo {
      width: 10rem;
    }

    .login-box h2 {
      color: #ffffff;
      font-size: 1.8rem;
      margin: 0;
      font-weight: 600;
    }

    .google-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background-color: #ffffff;
      color: #000000;
      border: none;
      padding: 14px 24px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s ease;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
      margin-top: 20px;
    }

    .google-btn img {
      height: 22px;
    }

    .google-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
    }

    .checkbox-area {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #d1d5db;
  padding: 10px 14px;
  border-radius: 8px;
  user-select: none;
  transition: background 0.3s ease;
}


.checkbox-area input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #4f9cf9;
  cursor: pointer;
}

.checkbox-area label {
  cursor: pointer;
}

.checkbox-area a {
  color: #4f9cf9;
  text-decoration: underline;
}

    .error {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
      width: 100%;
      max-width: 360px;
      margin: 10px auto 0;
      padding: 12px;
      display: none;
      flex-direction: row;
      align-items: center;
      justify-content: start;
      background: #EF665B;
      border-radius: 8px;
      box-shadow: 0px 0px 5px -3px #111;
      position: fixed;
    top: 11vh;
    right: 2vh;
    }

    .error__icon {
      width: 20px;
      height: 20px;
      transform: translateY(-2px);
      margin-right: 8px;
    }

    .error__icon path {
      fill: #fff;
    }

    .error__title {
      font-weight: 500;
      font-size: 14px;
      color: #fff;
    }

    .error__close {
      width: 20px;
      height: 20px;
      cursor: pointer;
      margin-left: auto;
    }

    .error__close path {
      fill: #fff;
    }

    @media (max-width: 500px) {
      .google-btn {
        font-size: 15px;
        padding: 12px 20px;
      }
    }
