@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Cairo', sans-serif;
}

body {
  background: linear-gradient(to right, #111, #330000);
  color: white;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.back {
  color: #ff4d4d;
  transition: color 0.3s ease;
  font-size: 50px;
  position: absolute;
  top: 20px;
  left: 20px;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1100px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

.info-section {
  flex: 1;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a, #3a0f0f);
}

.info-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #ff4d4d;
}

.info-section p {
  font-size: 18px;
  line-height: 1.8;
}

.signup-form {
  flex: 1;
  padding: 40px;
  background-color: #1c1c1c;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.signup-form h1 {
  margin-bottom: 30px;
  color: #ff4d4d;
}

form {
  display: flex;
  flex-direction: column;
}

form label {
  margin: 10px 0 5px;
}

form input {
  padding: 10px;
  border: none;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 16px;
}

form button {
  background-color: #ff4d4d;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #cc0000;
}

.login {
  margin-top: 15px;
  font-size: 14px;
}

.login a {
  color: #ff4d4d;
  text-decoration: none;
}

.login a:hover {
  text-decoration: underline;
}
