*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins';
  color: #ffffff;
  background-image: url('../media/rsqholo_server_background.png');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

form {
  max-width: 600px;
  margin: 30px auto;
  padding: 10px 20px;

  background: rgba(100, 100, 100, 0.25);
  border-radius: 25px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(100, 100, 100, 0.23);
}

h1,
h2 {
  margin: 0 0 20px 0;
  text-align: center;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
input[type="file"],
select {
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;

  background-color: #0000;
  color: #ffffff;
  border: 2px solid rgba(138, 151, 160, 0.5);

  font-family: 'Poppins';

  margin-bottom: 20px;
  border-radius: 20px;
}

input::file-selector-button {
  color: #ffffff;
  padding: 5px;
  margin-right: 10px;
  border-radius: 10px;
  background-color: rgba(138, 151, 160, 0.5);
  font-family: 'Poppins';
  border: none;
}

input::file-selector-button:hover
{
  background-color: rgba(138, 151, 160, 0.75);
}

input::file-selector-button:focus
{
  background-color: rgba(138, 151, 160, 1);
}

input:hover, textarea:hover, select:hover {
  border: 2px solid rgba(138, 151, 160, 0.75);
}


input:focus, textarea:focus, select:focus {
  border: 2px solid rgba(138, 151, 160, 1);
}

textarea {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 16px;
  height: auto;
  margin: 0;
  outline: 0;
  padding: 15px;
  width: 100%;
  background-color: #0000;
  color: #ffffff;
  border: 2px solid rgba(138, 151, 160, 0.5);
  min-height: 100px;
  margin-bottom: 20px;
  border-radius: 20px;

  font-family: 'Poppins';
 
  resize: vertical;
}

input[type="radio"],
input[type="checkbox"] {
  margin: 0 4px 8px 0;
  border-radius: 20px;
}

option, optgroup {
  color: #fff;
  font-family: 'Poppins';
  background-color: #252627;
}

button {
  padding: 20px 40px 20px 40px;
  color: #FFF;
  background-color: #0000;
  border-radius: 25px;
  width: 100%;
  border: 2px solid #22ebec;
  margin-bottom: 20px;
  font-family: 'Poppins';
  cursor: pointer;
  font-size: 18px;
  text-align: center;
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

legend {
  font-size: 1.4em;
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 8px;
}

label.light {
  font-weight: 300;
  display: inline;
}

.number {
  background-color: #425AE0;
  color: #fff;
  height: 30px;
  width: 30px;
  display: inline-block;
  font-size: 0.8em;
  margin-right: 4px;
  line-height: 30px;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  border-radius: 100%;
}

.center {
  text-align: center;
}

/* @media screen and (min-width: 480px) {

  form {
    max-width: 480px;
  }

} */