/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base */
body {
  font-family: 'Open Sans', sans-serif;
  background: black;
  color: white;
  line-height: 1.6;
}

/* Wrapper */
.wrapper {
  min-height: 100vh;
  background:
    linear-gradient(to bottom, rgba(255, 64, 50, 0.8), rgba(71, 17, 116, 0.9)),
    url('../images/background.jpg') center/cover no-repeat;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
}

.logo {
  width: 100px;
}

.header-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.header-right i {
  margin-right: 5px;
}

.header-right a {
  color: white;
  transition: 0.3s;
}

.header-right a:hover {
  color: purple;
}

/* Main */
.main-content {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 150px auto;
  padding: 0 20px;
}

.main-content form {
  flex: 0.4;
}

.text-container {
  flex: 1;
}

/* Form */
.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 5px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

input:focus,
textarea:focus {
  background: rgba(255, 255, 255, 0.3);
}

textarea {
  height: 100px;
  resize: none;
}

/* Button */
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 20px;
  border: none;
  background: #ff4032;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #ff5c4d;
}

/* Text */
.text-container h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.text-container p {
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 10px;
  }

  .header-right {
    flex-direction: column;
  }

  .main-content {
    flex-direction: column-reverse;
    margin: 50px auto;
  }

  .text-container h1 {
    font-size: 32px;
    text-align: center;
  }

  .text-container p {
    display: none;
  }
}