body {
  background-color: rgb(30, 30, 30);
}

h1 {
  color: bisque;
}

div {
  color: rgb(200, 200, 200);
  font-family: sans-serif;
}

.container {
  background-color: rgb(20, 20, 20);
  border: 1px solid;
  border-radius: 5px;
  border-color: rgb(50, 50, 50);
  box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
}

.form-container {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 450px;
  margin-top: 150px;
}

.button {
  color: rgb(200, 200, 200);
  background-color: rgb(30, 30, 30);
  border: 1px solid;
  border-radius: 5px;
  border-color: rgb(50, 50, 50);
}

.form-content {
  padding-top: 30px;
  padding-bottom: 30px;
}

.form-title {
  padding-bottom: 25px;
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}

.form-return-message {
  text-align: center;
  padding-bottom: 15px;
  color: red;
}

.form-text-options {
  text-align: center;
  color: rgb(50, 50, 255);
  padding-bottom: 15px;
}

.form-text-options:hover {
  color: rgb(150, 50, 255);
  cursor: pointer;
}

.form-input-holder {
  margin-left: 50%;
  transform: translateX(-50%);
  width: 350px;
}

.form-input {
  margin-left: 50%;
  margin-bottom: 15px;
  transform: translateX(-50%);
  width: 100%;
  height: 30px;
  background-color: rgb(15, 15, 15);
  border-radius: 5px;
  border: 1px solid rgb(50, 50, 50);;
  color: rgb(200, 200, 200);
  font-family: sans-serif;
  font-size: 15px;
}

.form-continue-button {
  margin-left: 50%;
  margin-bottom: 15px;
  transform: translateX(-50%);
  width: fit-content;
  height: fit-content;
  background-color: rgb(0, 150, 200);
  border: none;
  border-radius: 5px;
  color: black;
  font-family: sans-serif;
  padding: 15px;
  font-size: 17px;
  white-space: nowrap;
}

.form-continue-button:hover {
  background-color: rgb(100, 160, 180);
  cursor: pointer;
}

.form-continue-button.clicked {
  background-color: rgb(100, 100, 100);
}

.form-other-button {
  margin-left: 50%;
  margin-bottom: 15px;
  transform: translateX(-50%);
  width: fit-content;
  height: fit-content;
  background-color: rgb(30, 30, 30);
  border: 1px solid rgb(50, 50, 50);
  border-radius: 5px;
  color: rgb(200, 200, 200);
  font-family: sans-serif;
  padding: 15px;
  font-size: 17px;
  white-space: nowrap;
}

.form-other-button:hover {
  background-color: rgb(40, 40, 40);
  cursor: pointer;
}

.form-description {
  text-align: center;
  padding-bottom: 15px;
  color: rgb(100, 100, 100);
}

.alert-background {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0px;
  left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert-box {
  width: 500px;
  height: fit-content;
  background-color: rgb(20, 20, 20);
  border: 1px solid;
  border-radius: 5px;
  border-color: rgb(50, 50, 50);
  box-shadow: 0px 5px 10px rgb(0, 0, 0, 0.5);
}

.alert-title {
  text-align: center;
  padding-top: 30px;
  font-size: 30px;
  font-weight: bold;
}

.alert-message {
  text-align: center;
  padding: 20px;
}

.alert-button-container {
  width: fit-content;
  margin-left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.alert-cancel {
  width: fit-content;
  height: fit-content;
  padding: 15px;
  white-space: nowrap;
}

.alert-cancel:hover {
  background-color: rgb(40, 40, 40);
  cursor: pointer;
}

.alert-cancel.clicked {
  background-color: rgb(100, 100, 100);
}


.alert-continue {
  width: fit-content;
  height: fit-content;
  background-color: rgb(0, 150, 200);
  border: none;
  padding: 15px;
  color: black;
  white-space: nowrap;
}

.alert-continue:hover {
  background-color: rgb(100, 160, 180);
  cursor: pointer;
}

.alert-continue.clicked {
  background-color: rgb(100, 100, 100);
}

input:focus, textarea:focus {
  outline: none;
}