* {
    margin: 0;
    padding: 0;
}

body {
  font-family: "Lexend Deca", Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.container {
  max-width: 400px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: auto;
  gap: 30px;
}

.image img{
  width: 100%;
}

#formContainer {
  background-color: #fff;
  /* padding: 20px; */
  max-width: 400px;
  width: 100%;
}

h2 {
  text-align: center;
  color: #333;
}

form {
  text-align: left;
}

label {
  font-weight: bold;
  display: block;
  margin-bottom: 7px;
  color: #33475b;
  font-size: 14px;
  margin-top: 10px;
}

input, select,
button, textarea, .btn {
  width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  vertical-align: middle;
  color: rgb(51, 71, 91);
  background-color: rgb(245, 248, 250);
  border: 1px solid rgb(203, 214, 226);
  border-radius: 3px;
  padding: 9px 10px;
}

input, select {
  text-align: left;
}

textarea {
    max-width: 100%;
    min-width: 100%;
}

input:focus, select:focus, textarea:focus {
  border-color: rgba(0, 208, 228, .5) !important;
  box-shadow: 0 0 4px 1px rgba(0, 208, 228, .3), 0 0 0 1px #00d0e4 !important;
  outline: 0;
}

input::placeholder, textarea::placeholder {
  color: rgba(51, 71, 91, .3);
}

.input-error-message {
  font-size: 12px;
  color: rgba(255, 0, 0, .5);
}

button,
.btn {
  border: 1px solid #ff7a59;
  background-color: #ff7a59;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: bold;
}

button:hover,
.btn:hover {
  background-color: #ff7a59e3;
  border: 1px solid #ff7a59;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  color: #33475b;
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 100%;
  max-width: 400px;
  border-radius: 6px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
}

.modal-btns {
  display: flex;
  gap: 10px;
}

.modal-btns .cancel {
  background-color: #fff;
  color: #ff7a59;
  border-color: #ff7a59;
}

.modal-btns .cancel:hover {
  background-color: rgba(255, 122, 89, .1);
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#spiner {
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

#spiner img {
  width: 60px;
  height: 60px;
}

#box-error {
  background-color: rgba(255, 0, 0, .2);
  border: 1px solid rgba(255, 0, 0, .4);
  padding: 7px;
  border-radius: 3px;
  font-size: 12px;
  color: rgba(255, 0, 0, .6);
  display: none;
  margin-top: 20px;
}


/* STEPS */

#share-deal-controls {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn-disable {
    background-color: #c2c4ce;
    border-color: #c3c5d1;
}
.btn-disable:hover {
    background-color: #aeb0bb;
    border-color: #999ca8;
}


span.input-required{
    font-weight: 300;
}
