/*html,
body {
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
*/
/*
.btn-primary {
  border-radius: 0px;
  color: #fff;
  background-color: #0a7831;
  border-color: #0a7831;
}

.btn-primary:hover {
  color: #fff;
  background-color: #ffdd14;
  border-color: #ffdd14;
}

.btn-primary:focus, .btn-primary:active {
  color: #fff;
  background-color: #0a7831;
  border-color: #0a7831;
  box-shadow: #ffdd14;
}

.btn-info {
  border-radius: 0px;
  color: #000;
  background-color: #ffdd14;
  border-color: #ffdd14;
}

.btn-info:hover {
  color: #000;
  background-color: #0a7831;
  border-color: #0a7831;
}
*/

/*
.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}
*/

/* Fuente Poppins de Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

*{
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper{
    position: relative;
    max-width: 450px;
    /*width: 20%;*/
    border-radius: 12px;
    padding: 20px 30px 120px;
    background:red;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.form.login{
    position: absolute;
    left: 50%;
    bottom: -86%;
    transform: translateX(-50%);
    width: calc(100% + 220px);
    padding: 20px 140px;
    border-radius: 50%;
    height: 100%;
    background: #fff;
    transition: all .6s ease;

}

.wrapper.active
.form.login{
    bottom: -15%;
    border-radius: 35%;
    box-shadow: rgba(0, 0, 0, 0.1);
}

.form header{
    font-size: 30px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.form.login header{
    color: #000814;
    opacity: .6;
}

.wrapper.active
.form.login header{
    opacity: 1;
}

.wrapper.active
.signup header{
    opacity: .6;
}

.wrapper form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
}

form input{
    height: 60px;
    outline: none;
    border: none;
    padding: 0 15px;
    font-size: 16px;
    color: #000814 ;
    border-radius: 8px;
    background: #fff;
}

.form.login input{
    border: 1px solid #aaa;
}

.form.login input:focus{
    box-shadow: 0 1px 0 #000814; 
}

form .checkbox{
    display: flex;
    align-items: center;
    gap: 10px;

}

.checkbox input[type="checkbox"]{
    height: 16px;
    width: 16px;
    accent-color: #fff;
    cursor: pointer;
}

form .checkbox label{
    cursor: pointer;
    color:#fff
}

form a{
    color: #333;
    text-decoration: none;
}

form a:hover{
    text-decoration: underline;
}

form input[type="submit"]{
    margin-top: 16px;
    padding: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.form.login input[type="submit"]{
    background-color:red;
    color: #fff;
    border: none;
}

.form.login input[type="submit"]:hover{
  background-color:red;
}

.form.signup input[type="submit"]:hover{
  background-color: #eed1d1;
}

p{
  font-size: 10px;
  text-align: justify;
}

