body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #ffffff;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  background-color: #ffffff;
  text-align: center;
  padding: 20px 30px;
  position: relative;
}

.hero-icon {
  font-size: 120px;
  margin-bottom: 20px;
  color: #2141e7;
}

.hero h1 {
  margin: 0;
  font-size: 32px;
  font-weight: bold;
  color: #2141e7;
  text-transform: uppercase;
}

.hero p {
  font-size: 18px;
  margin-top: 10px;
  color: #2141e7;
}

.form-section {
  background-color: #2141e7;
  padding: 40px 30px;
  position: relative;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 20px;
}

.form-section h2 {
  width: 100%;
  margin-bottom: 25px;
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

form {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-message {
  text-align: center;
  font-size: 16px;
  margin-top: 20px;
  font-weight: bold;
  color: #ffffff;
  background-color: #2141e7;
  padding: 10px;
  border-radius: 10px;
  display: none;
}

.form-message.success {
  background-color: #28a745;
}

.form-message.error {
  background-color: #dc3545;
}

input[type="text"],
input[type="email"],
select {
  padding: 12px;
  font-size: 16px;
  border: 1px solid white;
  border-radius: 6px;
  background-color: #2141e7;
  color: white;
  width: 100%;
  box-sizing: border-box;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #d0d0d0;
  opacity: 1;
}

input[type="radio"] {
  margin-right: 8px;
}

label {
  font-size: 16px;
  color: white;
  display: block;
  margin-bottom: 6px;
}

#zaposleni-wrapper,
#struka-wrapper,
#kompanija-wrapper {
  width: 100%;
  margin-top: 15px;
}

#zaposleni-wrapper label,
#struka-wrapper label,
#kompanija-wrapper label {
  display: block;
  margin-bottom: 6px;
}

.wrapper {
  width: 100%;
  margin-top: 15px;
}

.wrapper label {
  display: block;
  margin-bottom: 6px;
}

.icon-right {
  font-size: 80px;
  color: white;
  margin-top: 30px;
  align-self: center;
}

.large-icon i {
  font-size: 120px;
}

.logo {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.logo img {
  max-width: 250px;
}

button.submit-btn {
  background-color: white;
  color: #2141e7;
  border: 2px solid #2141e7;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 30px;
  align-self: center;
  transition: background-color 0.3s ease;
}

button.submit-btn:hover {
  background-color: #e6e6e6;
}

.sub-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .form-section {
    padding: 30px 15px;
  }
  .hero-icon {
    font-size: 100px;
  }
  .large-icon i {
    font-size: 90px;
  }
  .form-section h2 {
    font-size: 18px;
  }
  button.submit-btn {
    padding: 12px 20px;
    font-size: 14px;
  }
}
