@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  position: relative;
  font-family: "Roboto", sans-serif;
  height: 100dvh;
  width: 100%;
  background-image: url("../assets/images/background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

input,
button,
a[href] {
  outline: none;
  border: none;
}

.card {
  position: absolute;
  left: 30%;
  top: 40%;
  background-color: #fff;
  width: 360px;
}

.card > .card-header {
  background-color: #e9ecef;
  padding: 12px 20px;
  border-bottom: 1px solid #ced4da;
}

.card > .card-header h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.card > .card-body {
  padding: 20px;
}

.mb-2 {
  margin-bottom: 16px;
}

#confirm-form .title-form {
  text-align: center;
  font-size: 16px;
  color: #6c757d;
}

#confirm-form .form-container .form-message {
  border-radius: 4px;
  padding: 8px 15px;
}

#confirm-form .form-container .form-message.success {
  background-color: #d4edda;
  color: #155724;
}

#confirm-form .form-container .form-message.failed {
  background-color: #fff3cd;
  color: #856404;
}

#confirm-form .form-container .form-message {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
}

#confirm-form .form-container .form-group {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 4px;
}

#confirm-form .form-container .form-group input {
  padding: 6px 12px;
  height: 100%;
  width: 100%;
  flex: 1 1 0;
  font-size: 16px;
  font-weight: 400;
  color: #495057;
  background-color: #fff;
  border-radius: 4px;
}

#confirm-form .form-container .form-group .append-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #ced4da;
  background-color: #e9ecef;
  height: 36px;
  width: 36px;
}

#confirm-form .form-container .form-checkbox label {
  margin-left: 4px;
  line-height: 1.5;
}

#confirm-form .form-container .form-checkbox label > span {
  color: #007bff;
}

#confirm-form .form-container .form-checkbox label > span:hover {
  text-decoration: underline;
  cursor: pointer;
}

#confirm-form .form-container .form-btn button[type="submit"] {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
  width: 100%;
  font-size: 16px;
  padding: 10px 12px;
  font-weight: 400;
  border-radius: 4px;
  cursor: pointer;
}

#confirm-form .form-container .form-btn button[type="submit"]:disabled,
#confirm-form
  .form-container
  .form-btn
  button[type="submit"].disabled:disabled {
  cursor: default;
  opacity: 0.65;
}

@media (max-width: 575px) {
  body {
    background-color: #2493c8;
    background-position: center top;
    background-size: contain;
  }

  .card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
