@charset "UTF-8";
body {
  max-width: 100%;
  max-height: 100%;
}

#background {
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: -1;
  border: none;
}
#background #desktopBackround {
  display: none;
}
#background .img {
  background-image: url("../img/background-mobile.png");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}

.program {
  width: 100%;
  background-color: rgba(211, 211, 211, 0.2);
  padding: 15px;
  margin-bottom: 45px;
  margin-top: 25px;
  text-align: center;
  border-radius: 15px;
  box-shadow: 0px 0px 20px lightgray;
}

.logo {
  position: relative;
  width: 100%;
  z-index: 1;
}
.logo img {
  width: 40%;
  max-width: 200px;
  height: auto;
  float: right;
  margin-right: 25px;
}

.language {
  z-index: 2;
  width: 100%;
  position: relative;
  text-align: center;
}
.language .lang {
  display: inline-block;
  color: black;
  font-size: 1rem;
  position: relative;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.language .lang a {
  color: black;
}
.language .lang a.active {
  font-weight: bold;
}
.language .lang:hover p {
  transform: scale(1.2) translate(-50%, -50%);
}
.language .lang p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.language span {
  justify-content: center;
  align-items: center;
  position: relative;
  height: 30px;
  width: 1px;
  display: inline-block;
  background: black;
  padding: 5px 0;
}

#fridays-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}
#fridays-logo img {
  width: 40%;
  max-width: 300px;
  height: auto;
}

#studentImg {
  display: none;
  z-index: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
  left: 5%;
  width: 350px;
  height: auto;
  transition: all 0.2s ease-in-out;
}

#form {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: 50px;
}
#form form {
  width: 90%;
  max-width: 550px;
  margin: 0 auto;
}
#form form .check-box {
  border: none !important;
  width: 100%;
}
#form form .control-group {
  position: relative;
  border-bottom: 1px solid black;
}
#form form .control-group:last-of-type {
  border: none;
}
#form form .control-group label {
  position: relative;
  left: 0px;
  font-weight: 600;
}
#form form .control-group input[type=text], #form form .control-group input[type=email], #form form .control-group input[type=tel] {
  border: none;
  border-radius: 0;
  padding: 0;
  padding-left: 70px;
  margin-top: -25px;
  background: transparent;
}
#form form .control-group .form-check {
  padding-top: 10px;
  height: 20px;
}
#form form .control-group .form-check label {
  font-size: 0.7rem;
  left: unset;
  color: gray;
  position: relative;
}
#form form .control-group .form-check input {
  appearance: none;
  font-size: 1rem;
  position: absolute;
  top: -5px;
  left: 0%;
  border: 1px solid gray;
  border-radius: 0;
}
#form form .control-group .form-check-input:checked {
  background-color: #0b91c0;
}
#form form #upload-btn {
  background-color: white;
  border: 2px solid black;
  width: 110px;
  margin-bottom: 15px;
  transition: all 0.2s ease-in-out;
}
#form form #upload-btn:hover {
  background-color: #B90276;
  color: white;
}
#form #gdpr {
  text-decoration: underline;
  font-weight: bold;
}
#form #gdpr:hover {
  text-decoration: underline;
}
#form .registerContainer {
  width: 100%;
}
#form .registerContainer #register {
  background-color: #B90276;
  color: white;
  border: none;
  outline: none;
  width: 150px;
  margin-left: 50%;
  transform: translateX(-50%);
  border-radius: 0;
  margin-top: 10px;
}
#form .registerContainer #register:focus {
  outline: none;
}

.contText {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 25px;
}

.icon-success {
  width: 55px;
  height: auto;
  margin-top: 25px;
  margin-bottom: 50px;
}

@media (orientation: landscape) {
  #background .img {
    background-image: url("../img/background-mobile-landscape.png");
  }

  .logo img {
    width: 30% !important;
  }

  #fridays-logo img {
    width: 30% !important;
  }

  .contText {
    margin: 0 auto;
  }

  #register {
    margin-bottom: 30px;
  }
}
@media (min-width: 360px) {
  #fridays-logo {
    margin-bottom: 25px;
  }
  #fridays-logo img {
    width: 40%;
    height: auto;
  }

  #form #register {
    margin-top: 25px;
  }
}
@media (min-width: 375px) {
  .logo img {
    width: 40%;
  }

  #fridays-logo {
    margin-bottom: 45px;
  }
  #fridays-logo img {
    width: 50%;
    height: auto;
  }
}
@media (min-width: 400px) {
  .logo img {
    width: 45%;
  }

  #fridays-logo {
    text-align: center;
    margin-bottom: 25px;
  }
  #fridays-logo img {
    width: 40%;
    height: auto;
  }

  #form #register {
    margin-top: 25px;
  }
}
@media (min-width: 768px) {
  #background #desktopBackground {
    display: block;
    width: 100vw;
    height: 100vh;
  }
  #background .img {
    display: none;
  }

  #form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #form form .responsive {
    width: 45%;
  }
}
@media (min-width: 992px) {
  #background #desktopBackground {
    display: block;
    width: 100vw;
    height: 100vh;
  }
  #background .img {
    display: none;
    width: 100%;
    min-width: 1920px;
    min-height: 1080px;
    height: 100%;
    background-image: url("../img/Web 1920 – 1.png");
    background-size: 100%;
    background-size: cover;
    background-position-y: -100px;
    background-attachment: fixed;
  }
}
@media (min-width: 1110px) {
  #studentImg {
    display: block;
    width: 250px;
  }
}
@media (min-width: 1200px) {
  #studentImg {
    width: 300px;
  }
}
@media (min-width: 1300px) and (orientation: landscape) {
  #studentImg {
    width: 350px;
  }
}
@media (min-width: 1400px) {
  #studentImg {
    width: 400px;
  }
}

/*# sourceMappingURL=main.css.map */
