/*
  LoginGUI Stylesheet for PhilleSkill
  © 2019 Paul Weiser. All Rights reserved.
*/

/* Grundlegende Style-Einstellungen */

html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-size: 100%;
  background-image: url(images/phille_verschwommen.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
}

input[type=text] {
  border-color: rgba(12, 158, 255, 1);
  border-style: solid;
  background-color: rgba(255, 255, 255, 0.5);
  height: 1em;
  width: 50%;
  border-radius: 1em;
  font-size: 2em;
  padding: 1em;
  text-align: center;
}

input[type=text]:focus {
  background-color: rgba(12, 158, 255, 0.5);
  color: white;
}

input[type=submit] {
  border-color: rgba(12, 158, 255, 1);
  border-style: solid;
  background-color: rgba(12, 158, 255, 0.5);
  width: 50%;
  border-radius: 1em;
  text-align: center;
  color: white;
}

form {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  margin: 1em;
}

/* Style für LoginContainer */

#LoginContainer {
  height: 20em;
  min-height: 20em;
  width: 30em;
  min-width: 30em;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
