:root {
  /*   COLORS  */
  --bs-green: #198754;
  --bs-gray-900: #212529;
  --bs-success: #198754;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100vh;
  background: var(--bs-gray-900);
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #ededed;
  border-radius: 5px;
  width: 60%;
  height: 70%;
  padding-top: 50px;
  position: relative;
}

h1 {
  position: absolute;
  top: 50px;
  left: 30px;
  font-size: 20px;
}

form {
  display: flex;
  flex-direction: column;
  width: 90%;
}

form > input {
  font-size: 16px;
  margin-bottom: 15px;
  padding: 15px 15px;
  color: #6c757d;
  background: #caccce;
  border: none;
  border-radius: 2px;
}

form > input:focus {
  /*background: #19875431;*/
  outline: 2px solid #198754;
}

form > button {
  font-size: 18px;
  font-weight: 520;
  letter-spacing: 1px;
  padding: 15px;
  border: none;
  border-radius: 5px;
  background: var(--bs-green);
  color: #caccce;
  cursor: pointer;
}

form > textarea {
  border: none;
  border-radius: 2px;
  margin-bottom: 10px;
  color: #6c757d;
  background: #caccce;
  font-size: 16px;
  padding: 10px;
  word-break: break-all;
}

form > textarea:focus {
  outline: 2px solid #198754;
}
