:root {
    --primary-color1: #1e1e56;
}

/* Global Stylings */
label {
    display: block;
    margin-bottom: 0.5rem;
}

input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
}

.width-50 {
    width: 50%;
}

.ml-auto {
    margin-left: auto;
}

.text-center {
    text-align: center;
}

/* Progressbar */
.progressbar {
    position: relative;
    display: flex;
    width: 80%;
    justify-content: space-between;
    counter-reset: step;
    margin: 2rem auto;
}

.progressbar::before,
.progress {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    background-color: white;
    z-index: -1;
}

.progress {
    background-color: var(--primary-color1);
    width: 0%;
    transition: 0.3s;
}

.progress-step {
    width: 2.1875rem;
    height: 2.1875rem;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.progress-step::before {
    counter-increment: step;
    content: counter(step);
}

/* .progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666;
} */

.progress-step-active {
    background-color: var(--primary-color1);
    color: #f3f3f3;
}

/* Form */
.form {
    width: clamp(320px, 30%, 430px);
    margin: 0 auto;
    border: 1px solid #ccc;
    border-radius: 0.35rem;
    padding: 1.5rem;
}

.form-step {
    display: block;
    transform-origin: top;
    animation: animate 0.5s;
}

.form-step-active {
    display: block;
}

.input-group {
    margin: 2rem 0;
}

/* @keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
} */

/* Button */
.btns-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* .btn {
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color1);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color1);
} */

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden !important;
}
.custom-file-input {
    border: none !important;
}

.custom-file-input::before {
    font-family: FontAwesome;
    content: "\f093  Add attachment" !important;
    display: inline-block !important;
    /* background: linear-gradient(top, #f9f9f9, #e3e3e3) !important; */
    background-color: #212529;
    /* border: 1px solid #999 !important; */
    /* border: none !important; */
    color: white;
    border-radius: 3px !important;
    padding: 7px 8px !important;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer !important;
    text-align: center;
    font-weight: 700 !important;
    font-size: 14px !important;
    width: 100% !important;
}

.custom-file-input:hover::before {
    border-color: black;
}

.custom-file-input:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
