@import url("https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Ubuntu Condensed', sans-serif; }

body {
  font-size: 25px; }

.website {
  height: 100vh;
  overflow: hidden;
  width: 100%; }

.website .sliders {
  height: 100%;
  width: 300vw; }

.website .slide {
  background-position: center;
  background-size: cover;
  display: inline-block;
  height: 100%;
  padding: 40px;
  width: 100vw; }

.arrow-right {
  display: flex;
  font-size: 72px;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100px;
  right: 0; }

.arrow-right:hover {
  background-color: rgba(0, 0, 0, 0.4); }

.arrow-right a {
  align-items: center;
  color: #FFF;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
  width: 100%; }

.arrow-left {
  display: flex;
  font-size: 72px;
  height: 100vh;
  position: absolute;
  top: 0;
  width: 100px;
  left: 0; }

.arrow-left:hover {
  background-color: rgba(0, 0, 0, 0.4); }

.arrow-left a {
  align-items: center;
  color: #FFF;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 0 20px;
  text-decoration: none;
  width: 100%; }

.login {
  background-color: rgba(96, 96, 96, 0.9);
  color: #FFFFFF;
  border-radius: 20px;
  height: 250px;
  padding: 20px 40px;
  position: absolute;
  left: 5%;
  text-align: center;
  top: 5%;
  width: 400px; }

.login input {
  background-color: transparent;
  color: #eeeeee;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #000;
  margin-bottom: 15px 0;
  outline: none;
  padding: 12px;
  width: 100%; }

.login button {
  background-color: #FFCC29;
  border: none;
  border-radius: 10px;
  color: #4a4a4a;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  outline: none;
  padding: 12px 22px; }

.login i {
  cursor: pointer;
  float: right;
  font-size: 16px;
  margin-left: -25px;
  margin-top: 15px;
  position: relative;
  z-index: 2; }

.login .erro {
  color: #FFCC29;
  font-size: 16px;
  height: 18px; }

.login .forgot {
  font-size: 12px;
  text-align: left; }

.login .forgot a {
  color: #FFCC29;
  text-decoration: none; }

.aviso {
  color: #FFCC29;
  font-size: 16px;
  height: 18px; }

.login ::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bdbdbd;
  font-size: 16px;
  opacity: 1;
  /* Firefox */ }

@media (max-width: 450px) {
  .login {
    left: 0;
    margin: 0 auto;
    right: 0;
    width: 350px;
    z-index: 999; } }
