/*!*************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/app/style.scss ***!
  \*************************************************************************************************************/
@font-face {
  font-family: "roboto";
  src: url(fc2b5060f7accec5cf74.ttf) format("truetype");
}
@font-face {
  font-family: "roboto";
  src: url(f80816a5455d171f948d.ttf) format("truetype");
  font-weight: bold;
}
* {
  font-family: roboto;
  color: white;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: #181a1b;
  margin: 0;
  height: 100vh;
}

h1 {
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
form:not(.active) {
  display: none;
}

input, select {
  margin-bottom: 1rem;
}
input[type=number], select[type=number] {
  text-align: end;
  width: 80%;
}
input[type=number].small, select[type=number].small {
  width: 50%;
}
input:not([type=submit]), select:not([type=submit]) {
  border: none;
  border-bottom: 2px solid #333;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 18px;
  background-color: transparent;
}
input:not([type=submit]):focus, select:not([type=submit]):focus {
  border-bottom: 2px solid #0288d1;
  outline: none;
}

button, input[type=submit] {
  background-color: #0288d1;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
button:hover, input[type=submit]:hover {
  background-color: #03a9f4;
}

#result {
  display: flex;
  flex-direction: column;
}

#error-message {
  color: red;
}

.hide {
  display: none;
}

p {
  max-width: 80%;
}

footer {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
}
footer a {
  color: #0288d1;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}
