/* Reset standaardmarges en padding voor de hele pagina */
html,
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #fff;
  height: 100vh;
  background-image: url("../images/backgroundRedForest.png");
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  position: fixed;
  margin-top: 100px;
  font-size: 100px;
  text-align: center;
  width: 100%;
}


main {
  height: 100vh;
}

/* Style voor het hoofdcontainer voor de loginpagina */
.main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Stijl voor de login-container */
.login-container {
  background-color: rgb(67, 67, 67);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  width: 30vw;
  min-width: 300px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sort-right {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

/* Stijl voor de titeltekst */
h2 {
  font-size: 24px;
}

/* Stijl voor de invoervelden */
input[type="text"],
input[type="password"],
input[type="email"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  background-color: #333;
  color: #fff;
  border-radius: 4px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Stijl voor de login-knop */
.login-btn {
  width: 45%;
  padding: 10px;
  background-color: #DB4621;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.login-btn:hover {
  background-color: #FF6F3C;
}

/* Stijl voor de link naar de registratie- of aanmeldpagina */
a {
  color: #DB4621;
  text-decoration: none;
  font-size: 16px;
}

a:hover {
  text-decoration: underline;
}


/* Login with steam */
.steambutton {
  display: block;
  background-color: #6f9f31;
  width: 45%;
  height: 50px;
  line-height: 50px;
  color: #fff;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 100px;
}

.steambutton span {
  font-family: 'Exo 2', sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  width: 75%;
  font-size: 14px;
  text-transform: uppercase;
  left: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}

.steambutton span,
.steambutton .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}

.steambutton i {
  scale: 1.7;
}

.steambutton .icon .fa {
  font-size: 30px;
  line-height: 50px;
  -webkit-transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
}

.steambutton .icon {
  width: 25%;
  right: 0;
  -webkit-transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}

.steambutton span,
.steambutton .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.steambutton span:after {
  content: '';
  background-color: #5d8628;
  width: 2px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}

.steambutton.success span,
.steambutton:hover span {
  left: -72%;
  opacity: 0;
}

.steambutton.success .icon,
.steambutton:hover .icon {
  width: 100%;
}

.steambutton.success .icon .fa,
.steambutton:hover .icon .fa {
  font-size: 45px;
}



/* discord */

button {
  background: transparent;
  position: relative;
  padding: 5px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(88, 101, 242, 1);
  border-radius: 25px;
  outline: none;
  overflow: hidden;
  color: rgba(88, 101, 242, 1);
  transition: color 0.3s 0.1s ease-out;
  text-align: center;
}

button span {
  margin: 10px;
  margin-left: 15px;
}

button svg {
  scale: 1.7;
}

button::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: '';
  border-radius: 50%;
  display: block;
  width: 20em;
  height: 20em;
  left: -5em;
  text-align: center;
  transition: box-shadow 0.5s ease-out;
  z-index: -1;
}

button:hover {
  color: #fff;
  border: 1px solid rgba(88, 101, 242, 1);
}

button:hover::before {
  box-shadow: inset 0 0 0 10em rgba(88, 101, 242, 1);
}



@media only screen and (max-width: 1000px) {

  h1 {
    position: fixed;
    margin-top: 100px;
    font-size: 40px;
  }
  
  .login-container {
    width: 80vw;
  }
  .sort-right{
    flex-direction: column;
  }

  .steambutton {
    width: 100%;
    margin-bottom: 30px;
  }
}