html,
body {
  width: 100%;
  height: 100%;
}

html {
  background-image: url(../images/stars.jpg);
  background-size: 50%;
}

body {
  margin: 0;
  font: 14px/1em SourceSansPro, Lato, sans-serif;
  color: #505050;
  background-image: url(../images/connect.svg);
  background-position: -18em 0;
  background-size: 160%;
}

input,
button {
  height: 42px;
  margin: 10px 0;
  padding: 10px 12px;
  border-radius: 3px;
  font: 14px/1em SourceSansPro, Lato, sans-serif;
  color: #fff;
  border: none;
}

button {
  min-width: 120px;
  padding: 0 20px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
}

p {
  line-height: 1.5em;
}

a {
  color: inherit;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  text-align: justify;
  outline: none;
}

.alert,
.container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alert {
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.popup-box {
  position: absolute;
  width: 600px;
  padding: 30px 35px;
  border-radius: 7px;
  background-color: #fff;
  box-shadow: 0 10px 35px #0002;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popup-box h3 {
  margin: 0 0 20px;
  color: #ec2f30;
  text-align: center;
  text-transform: uppercase;
}

.popup-box button {
  margin: 0;
  background-color: #e55555;
}

.popup-box p {
  margin: 0;
}

.popup-box .privacy {
  padding: 8px 6px 8px 8px;
  margin: 20px 0 30px;
  border-radius: 5px;
  background-color: #00000009;
}

.popup-box .privacy p {
  position: relative;
  padding: 0 8px;
  font-size: 12px;
  color: #0006;
}

.popup-box .privacy p span {
  position: absolute;
  left: 0;
}

.container {
  background-image: url(../images/planet.png);
  background-repeat: no-repeat;
  background-position: 105% -10em;
  background-size: 30%;
}

.center {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.center .logo {
  width: 235px;
  height: 70px;
  margin: 0 auto 30px;
  background-repeat: no-repeat;
  background-size: 100%;
}



.center.login .logo {
  height: 50px;
  background-image: url(../images/logo.svg);
}


.center.meet .logo {
  background-image: url(../images/logo-meet.svg);
}

.center.library .logo {
  background-image: url(../images/logo-library.svg);
}

.central-panel {
  padding: 20px 46px;
  border-radius: 5px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
}

.central-panel h3 {
  text-align: center;
}

.central-panel input {
  color: #000b;
  background: #0000000a;
}

.central-panel input::-webkit-input-placeholder {
  color: #0003;
}

.central-panel button {
  background-color: #12b569;
  background-color: #3a62f5;
}

.central-panel p.warning {
  color: #0004;
}

.central-panel p.iforget {
  text-align: center;
}

.meet .central-panel,
.library .central-panel {
  width: 640px;
}

.login .central-panel {
  width: 400px;
}

.login input,
.login button {
  width: 300px;
}

.meet input,
.library input {
  width: calc(100% - 130px);
}

.meet button,
.library button {
  float: right;
  width: 120px;
}

p.warning {
  font-size: 12px;
  color: #fff6;
  color: #676c76;
  min-height: 60px;
  margin-top: 20px;
  position: relative;
}

p.warning span {
  position: absolute;
  left: -10px;
}

.login p.warning {
  max-width: 360px;
}

.meet p.warning,
.library p.warning {
  max-width: 550px;
}

footer {
  width: 100%;
  height: 70px;
  position: absolute;
  bottom: 0;
}

footer p {
  width: 100%;
  margin: 0 auto;
  font-size: 12px;
  text-align: center;
  color: #fff6;
}