@import url("https://fonts.googleapis.com/css2?family=Slackey&display=swap");
* {
  font-family: "Slackey", cursive;
}

body {
  background-image: url(/background.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 0;
}

.content {
  min-height: 100vh;
  min-width: 100vw;
}

.logo-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

.logo-container .logo {
  width: 15vh;
  height: 15vh;
}

.container {
  max-width: 800px;
  padding: 0 2rem;
  margin: auto;
}

.info-text {
  color: white;
  text-align: center;
}

.btn {
  border: 0;
  padding: 1rem 0;
  font-size: 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
}

a.btn {
  color: white;
}

.btn-full {
  width: 100%;
  text-align: center;
}

.btn-black {
  background: black;
  color: white;
  justify-content: center;
  display: flex;
}

.btn-black img {
  width: 2rem;
  height: 2rem;
  padding-right: 1rem;
}

.user-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.user-info .profile-picture {
  width: 5rem;
  height: 5rem;
  border-radius: 5rem;
}

.user-info .form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 2rem;
}

.user-info .form-group h4 {
  text-align: left;
  padding: 0 0 1rem 0;
  margin: 0;
}

.user-info .form-group input {
  padding: 1rem;
  border: 0;
  border-radius: 1rem;
}

.login-container {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}

form {
  width: 40vw;
}

.form-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding-bottom: 20px;
  color: white;
}

.form-control {
  height: 30px;
  border: 0px;
  border-radius: 10px;
}
