body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: url('https://storagewestin.blob.core.windows.net/careers/careers.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.header {
  text-align: center;
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
}

.header h1 {
  font-size: 60px;
  font-weight: 900;
  color: #f28c38;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
  font-size: 22px;
  max-width: 800px;
  margin: 20px auto;
  line-height: 1.6;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.highlight {
  color: #f28c38;
}

.form-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h2 {
  font-size: 36px;
  color: #f28c38;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.field-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  background: rgba(242, 140, 56, 0.2);
  color: #fff;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
  box-sizing: border-box;
  transition: border 0.3s, box-shadow 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #f28c38;
  box-shadow: 0 0 8px rgba(242, 140, 56, 0.5);
  outline: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.resume-upload label {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-weight: 600;
}

button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(90deg, #f28c38, #d67a2e);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background: linear-gradient(90deg, #d67a2e, #b56824);
  transform: translateY(-2px);
}

.logo {
  max-width: 140px;
  margin: 0 auto 30px;
  display: block;
  transition: transform 0.3s;
}

.logo:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .header h1 { font-size: 42px; }
  .header p { font-size: 18px; }
  .form-container { padding: 25px; margin: 20px; }
  .field-group { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .header { padding: 40px 10px; }
  .header h1 { font-size: 32px; }
  .header p { font-size: 16px; }
  .form-container { padding: 20px; }
}
