* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

#screen {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: row;
}

.login_container {
  display: flex;
  width: 35%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.login_form {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.img_logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto 30px;
  width: 200px;
  height: 46px;
}

.logo_ucpel {
  height: 150px;
  width: 150px;
}

.logo_ucpel:hover {
  cursor: default;
}

.tittle {
  margin-top: 90px;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #5b205e;
}

.img_container {
  width: 65%;
}

.img_ucpel {
  height: 100%;
}

.img_ucpel:hover {
  cursor: default;
}

.form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.form_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 350px;
}

.form_input_email {
  display: flex;
  width: 300px;
  height: 35px;
}

.form_input_pass {
  display: flex;
  width: 300px;
  height: 35px;
}

#email_input {
  width: 100%;
  height: 100%;
  border-radius: 0 5px 5px 0;
  margin-bottom: 10px;
}

#password_input {
  width: 100%;
  height: 100%;
  border-radius: 0 5px 5px 0;
  margin-bottom: 0;
}

.icon_user {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2.9rem;
  height: 2.5rem;
  padding-left: 0.1rem;
  background-color: #e3e3e3;
  border-radius: 5px 0 0 5px;
}

.icon_pass {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 2.4rem;
  height: 2.5rem;
  padding-left: 0.1rem;
  background-color: #e3e3e3;
  border-radius: 5px 0 0 5px;
}

.captcha {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  width: 10%;
}

.captchaLogin {
  width: 100px;
}

.button_login {
  margin-top: 20px;
  width: 85%;
  height: 40px;
  color: #fff;
  background-color: #5b205e;
  border: 0 solid #000;
  border-radius: 5px;
}

.button_login:hover {
  background-color: #407cb7;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.google_button {
  margin-top: 30px;
}

/* RESPONSIVIDADE */

@media (max-width: 1200px) {
  .img_container {
    display: none;
  }

  .login_container {
    width: 100vw;
  }
}

@media (max-width: 800px) {
  #screen {
    width: 100%;
    height: 100%;
  }

  .img_container {
    display: none;
  }

  .login_form {
    width: 100vw;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  #screen {
    width: 100%;
    height: 100%;
  }

  .img_container {
    display: none;
  }

  .login_form {
    width: 100vw;
    height: 100vh;
  }
}
