* {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ff6e6e;
  background-image: url('https://www.transparenttextures.com/patterns/purty-wood.png');
  background-repeat: repeat;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

header button {
  background-color: white;
  border: none;
  color: #ff6e6e;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

header button:hover {
  background-color: #ffe5e5;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  width: 100%;
}

.form-section {
  display: flex;
  justify-content: center;
  width: 100%;
}

.form-card {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  text-align: center;
}

.form-card .logo {
  width: 100px;
  margin-bottom: 20px;
}

.form-card h2 {
  margin-bottom: 20px;
  color: #ff6e6e;
}

.form-card input[type="text"],
.form-card input[type="password"],
.form-card input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.form-card label {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 10px 0;
}

.submit-btn {
  width: 100%;
  background-color: #ff6e6e;
  color: white;
  border: none;
  padding: 10px;
  font-weight: bold;
  margin-top: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.submit-btn:hover {
  background-color: #e15555;
}

.hidden {
  display: none;
}

p {
  margin-top: 15px;
  font-size: 14px;
}

p a {
  color: #ff6e6e;
  text-decoration: none;
}
