* {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  height: 100%;
  background-color: #f5f2f2 !important;
}

.container {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-dft {
  display: flex;
  flex-direction: column;
  box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  padding: 40px 50px;
  border: none;
  background-color: white;
  max-width: 500px;
}

.card-confirmation {
  display: flex;
  flex-direction: column;
  box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.16);
  border-radius: 25px;
  border: none;
  background-color: white;
  max-width: 500px;
  min-width: 500px;
}

.card-confirmation-body {
  text-align: center;
  padding: 62px 24px 30px 24px;
}

.card-confirmation-footer {
  padding: 32px 0;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  font-style: normal;
  color: #213cb0;
  text-decoration: underline;
  cursor: pointer;
}

.divider {
  width: 100%;
  height: 5px;
  background: #f5f2f2;
}

.p-dft {
  font-size: 15px;
  font-weight: normal;
  line-height: 20px;
  font-style: normal;
  text-align: left;
  color: #000000;
}

.inpt {
  border-radius: 5px;
  background: #f5f2f2;
  box-shadow: none;
  border: none;
  padding: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: normal;
  line-height: 20px;
  font-style: normal;
}

.inpt:focus {
  outline: none;
}

.inpt::placeholder {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  font-style: normal;
  color: #bebcbc;
}

.dft-input {
  border-radius: 5px;
  background: #f5f2f2;
}

.dft-button {
  height: 51px;
  border-radius: 5px;
  background: transparent;
  background: linear-gradient(90deg, #213cb0 0%, #eb008a 100%);
  border: none;
  box-shadow: none;
  font-size: 12px;
  font-weight: normal;
  line-height: 20px;
  font-style: normal;
  text-align: center;
  color: #ffffff;
  &:disabled{
    opacity: 0.5;
  }
}

.img-area {
  display: flex;
  flex-direction: row;
  align-items: top;
  justify-content: center;
  gap: 30px;
}

.logo-clube {
  width: 111px;
  height: 43px;
  margin-top: 20px;
}

.logo-vantagens {
  width: 151px;
  height: 96px;
}

.red-border{
  border: 1px solid rgb(241, 70, 70);
  background-color: rgba(241, 70, 70, 0.404);
}

.green-border{
  border: 1px solid rgb(70, 241, 70);
  background-color: rgba(70, 241, 70, 0.13);
}

@media screen and (max-width: 768px) {
  .card-dft {
    padding: 40px 20px;
  }
  .img-area {
    flex-direction: row;
    align-items: center;
  }
  .logo-clube {
    width: 30%;
    height: auto;
    margin-top: 0;
  }

  .logo-vantagens {
    width: 40%;
    height: auto;
    margin-top: 0;
  }

  .card-confirmation {
    display: flex;
    flex-direction: column;
    box-shadow: 5px 10px 5px rgba(0, 0, 0, 0.16);
    border-radius: 25px;
    border: none;
    background-color: white;
    max-width: 100%;
    min-width: 100%;
  }

  .card-confirmation-body {
    text-align: center;
    padding: 62px 24px 30px 24px;
  }

  .card-confirmation-footer {
    padding: 32px 0;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    font-style: normal;
    color: #213cb0;
    text-decoration: underline;
    cursor: pointer;
  }
}

/* Select Styling */
.select-container {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.custom-select {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 5px;
  background-color: #f5f2f2;
  font-size: 14px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: center;
}

.custom-select:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(33, 60, 176, 0.2);
}

.select-search {
  width: 100%;
  padding: 8px;
  border: 1px solid #f5f2f2;
  border-radius: 5px;
  margin-bottom: 0;
  font-size: 14px;
  position: sticky;
  top: 0;
  background: white;
  z-index: 2;
  text-align: center;
}

.select-search:focus {
  outline: none;
  border-color: #213cb0;
}

.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #f5f2f2;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.select-option {
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.2s;
  text-align: center;
}

.select-option:hover {
  background-color: #f5f2f2;
}

.select-option.selected {
  background-color: #213cb0;
  color: white;
}

/* Scrollbar styling */
.select-options::-webkit-scrollbar {
  width: 8px;
}

.select-options::-webkit-scrollbar-track {
  background: #f5f2f2;
  border-radius: 4px;
}

.select-options::-webkit-scrollbar-thumb {
  background: #bebcbc;
  border-radius: 4px;
}

.select-options::-webkit-scrollbar-thumb:hover {
  background: #213cb0;
}