/* For Registration css*/
#step2-wrapper {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px;
    font-family: 'Segoe UI', sans-serif;
}

#step2-wrapper label {
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}

#step2-wrapper .form-group {
    margin-bottom: 20px;
}

#step2-wrapper input[type="radio"] {
    margin-right: 6px;
    transform: scale(1.1);
}

#attendee-errors {
    color: #d9534f;
    font-size: 0.95rem;
    font-weight: 500;
}

#attendee-fields {
    padding: 20px 0px 20px 0px;
    border-radius: 8px;
    min-height: 80px;
}

.attendee-fields-box-alumini {
    background-color: #ADD8E6;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    min-height: 80px;
    margin-bottom: 20px;
}

.attendee-fields-box-other {
    background-color: #FDF4F5;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    min-height: 80px;
    margin-bottom: 20px;
}

#step2-wrapper .btn {
    padding: 10px 24px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}

#step2-wrapper .btn-secondary {
    background-color: #6c757d;
    border: none;
    margin-right: 10px;
}

#step2-wrapper .btn-primary {
    background-color: #007bff;
    border: none;
}

#step2-wrapper .btn:hover {
    opacity: 0.9;
}

/* Breadcrups CSS */

.arrow-steps .step {
  font-size: 14px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  cursor: default;
  margin: 0 3px;
  padding: 10px 10px 10px 30px;
  min-width: 250px;
  float: left;
  position: relative;
  background-color: #262eb5;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; 
  transition: background-color 0.2s ease;
}

.arrow-steps .step:after,
.arrow-steps .step:before {
  content: " ";
  position: absolute;
  top: 0;
  right: -17px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 17px solid transparent;
  border-left: 17px solid #262eb5;  
  z-index: 2;
  transition: border-color 0.2s ease;
}

.arrow-steps .step:before {
  right: auto;
  left: 0;
  border-left: 17px solid #fff; 
  z-index: 0;
}

.arrow-steps .step:first-child:before {
  border: none;
}

.arrow-steps .step:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.arrow-steps .step span {
  position: relative;
}

.arrow-steps .step span:before {
  opacity: 0;
  content: "✔";
  position: absolute;
  top: -2px;
  left: -20px;
}

.arrow-steps .step.done span:before {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease 0.5s;
  -moz-transition: opacity 0.3s ease 0.5s;
  -ms-transition: opacity 0.3s ease 0.5s;
  transition: opacity 0.3s ease 0.5s;
}

.arrow-steps .step.current {
  color: #fff;
  background-color: #FF4070;
}

.arrow-steps .step.current:after {
  border-left: 17px solid #FF4070;  
}