* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  background: linear-gradient(135deg, #1f1c2c, #928dab);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Header */
.header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo{
    max-width: 100%;
    width: 130px;
    height: auto;
}

.top-btn {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 22px;
  border-radius: 20px;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.top-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

/* Glass container */
.glass-container {
  padding: 120px 20px 40px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.glass-form {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
}

.glass-form h2 {
  margin-bottom: 10px;
  font-size: 28px;
}

.glass-form p {
  font-size: 15px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.glass-form input,
.glass-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: background-color 0.3s ease;
}

.glass-form input::placeholder,
.glass-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.glass-form input:focus,
.glass-form textarea:focus {
  background-color: rgba(255, 255, 255, 0.2);
}

.glass-form button {
  background-color: #00c6ff;
  background-image: linear-gradient(45deg, #00c6ff, #0072ff);
  border: none;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.glass-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 198, 255, 0.4);
}

/* Responsivo */
@media (max-width: 600px) {
  .glass-form {
    padding: 30px 20px;
    margin-top: 50px;
  }

  .header {
    flex-direction: column;
    gap: 10px;
  }
}
