/***************************************************************************/
/************************* styles - F.E.G.l.P. e.V. ************************/
/************************ MIT LICENSE ./license.txt ************************/
/***************************************************************************/

.pass-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #383838;
  padding: 30px;
  max-width: 450px;
  max-height: 350px;
  width: 100%;
  border-radius: 20px;
  /*border: 2px solid #707070;*/
  box-shadow: 0.4rem 0.4rem 0.6rem #00000040;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.form {
  display: flex;
  flex-direction: column;
}

.form a {
color:#62b3ff;
}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #e2e2e2;
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: #707070;
  font-weight: 600;
  margin-left: 45%;
}

.inputForm {
  border: 1.5px solid #333;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
  background-color: #2b2b2b;
  margin-top: 12px;
  margin-bottom: 5px;
}

.inputForm svg {
  color: #ffffff;
}

.form input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 100%;
  height: 100%;
  background-color: #2b2b2b;
  color: #ffffff;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: #ffffff;
  font-weight: 400;
}

.form span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  align-items: center;
  justify-items: center;
  margin: 20px 0 10px 0;
  background-color: #2d79f3;
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  box-shadow: 0.4rem 0.4rem 0.6rem #00000040;
}

.button-submit:active,
.btn-return:active,
.btn-support:active {
  font-size: 14px;
  box-shadow: 0.1rem 0.1rem 0.3rem #00000040;
}

.btn-support:hover {
  background-color: #636363;
}

.btn-return:hover {
  background-color: #b62222;
}

.button-submit:hover {
  background-color: #3180ff;
}

.form p {
  text-align: center;
  color: #ffffff;
  font-size: 14px;
  margin: 5px 0;
}

.btn-pass {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: none;
  color: #ffffff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn-return {
  font-size: 15px;
  background-color: #971a1a;
  box-shadow: 0.4rem 0.4rem 0.6rem #00000040;
}

.btn-support {
  font-size: 15px;
  background-color: #474747;
  box-shadow: 0.4rem 0.4rem 0.6rem #00000040;
}

.btn:hover {
  border: 1px solid #2d79f3;
}

dialog[open] {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
	width: 100%;
  height: 100%;
	background: transparent;
  border: none;
}

dialog::backdrop {
	background: transparent;
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}