* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}

body {
  background-image: url(background_pc.jpg);
  background-color: rgba(0, 0, 0, 0.2);
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.container__todo {
  width: 400px;
  margin: auto;
  position: relative;
}

/*Formularios*/

.container__login-register {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 500px;
  position: relative;
  height: 100%;
}

.container__login-register form {
  border-radius: 0px 10px 10px 0px;
  display: grid;
  position: relative;
  height: 100%;
  width: 100%;
  padding: 208px 10px;
  background: #fff;
}

.container__login-register form h2 {
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #46a2fd;
}
.container__login-register form input {
  border-radius: 10px;
  width: 100%;
  margin-top: 20px;
  padding: 10px;
  border: none;
  background: #f2f2f2;
  font-size: 16px;
  outline: none;
}
.container__login-register form button {
  transition: all 200ms ease-in-out;
  padding: 10px 150px;
  margin-top: 10px;
  border-radius: 10px;
  border: 1px solid #46a2fd;
  font-size: 14px;
  background: #46a2fd;
  font-weight: 600;
  color: white;
  cursor: pointer;
  outline: none;
}
.container__login-register form button:hover {
  color: #46a2fd;
  background: transparent;
}

.formulario__login {
  z-index: 1;
  opacity: 1;
  display: block;
}
.container__login-register h3 {
  font-weight: 400;
}
.word_account {
  padding-top: 20px;
}
.buttom_1 {
  display: flex;
  justify-content: center;
  width: 100%;
}
.btn_1 {
  padding: 2px;
  margin-top: 10px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #fff;
  height: 40px;
  width: 110px;
  background-color: #46a2fd;
  transition: all 200ms ease-in-out;
}
.btn_1:hover {
  color: #46a2fd;
  background: none;
  border: 1px solid #46a2fd;
}

.btns_container {
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
button#btnviewpassword {
  margin-bottom: 20px;
  padding: 10px;
  width: 120px;
  font-size: 10px;
}

/*Trabajando en el responsive Design*/

@media (max-width: 1096px) {
  .container_all {
    height: 100%;
    margin-top: 10px;
  }
  body {
    background-image: url(background_phonef.png);
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
  }

  .container__todo {
    width: 400px;
    margin: auto;
    position: relative;
  }

  /*Formularios*/

  .container__login-register {
    width: 100%;
    position: relative;
    height: 100%;
  }

  .container__login-register form {
    background: none;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 100%;
    width: 100%;
  }
  .container__login-register form h2 {
    font-size: 50px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    margin-bottom: 20px;
    color: #46a2fd;
  }
  .container__login-register form input {
    padding: 20px;
    border-radius: 100px;
    width: 100%;
    margin-top: 20px;
    outline: none;
  }
  .container__login-register form button {
    font-size: 20px;
    transition: all 200ms ease-in-out;
    margin-top: 40px;
    border-radius: 10px;
    border: 1px solid #46a2fd;
    background: #46a2fd;
    font-weight: 600;
    color: white;
    cursor: pointer;
    outline: none;
  }
  .container__login-register form button:hover {
    color: #46a2fd;
    background: transparent;
  }

  .formulario__login {
    z-index: 1;
    opacity: 1;
    display: block;
  }
  .container__login-register h3 {
    font-family: monospace;
    color: #fff;
    font-weight: 400;
  }
  .word_account {
    font-size: 20px;
    color: #fff;
    padding-top: 20px;
  }
  .buttom_1 {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .btn_1 {
    margin-top: 10px;
    margin-bottom: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    height: 40px;
    width: 110px;
    background-color: #46a2fd;
    transition: all 200ms ease-in-out;
  }
  .btn_1:hover {
    color: #46a2fd;
    background: none;
    border: 1px solid #46a2fd;
  }
}
