@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap");

:root {
  --brand-light: #ea8245;
  --brand-dark: #403836;
  --brand-grey-line: #92736e;
  --brand-grey-text: #92736e;
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

}

.container{
    width: 60%;
    height: 80%;
    display: flex;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .212);
    border-radius: 50px;
}

.img-login{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.input-group input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 0;
  border: 0 none;
  outline: 0;
  border: solid 1px var(--brand-light);
}

.img-login img{
    height: 100%;
    overflow: hidden;
    border-radius: 50px 0 0 50px;
    
}

.login{
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* padding: 3rem; */
}

.login-header{
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-between;
}

.button-login{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-login button{
    width: 100%;
    border: none;
    background-color: #ea8245;
    padding: 0.62rem;
    border-radius: 50px;
    cursor: pointer;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
}

.button-login button:hover{
    background-color: #403836;
}

#cta-secundario {
    width: 100%;
    border: none;
    background-color: transparent;
    padding: 0.62rem;
    border-radius: 50px;
    cursor: pointer;
    color: var(--brand-dark);
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
font-size: .8rem; 
margin-top: 6px;
}

.login-header h1::after{
    content: '';
    display: block;
    width: 5rem;
    height: 0.3rem;
    background-color: #ea8245;
    margin: 0 auto;
    position: absolute;
    border-radius: 10px;
}

.input-box{
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}
  
.input-box input{
    margin: 0.6rem 0;
    padding: 0.8rem 1.2rem;
    border: none;
    border-radius: 10px;
    box-shadow: 1px 1px 6px #0000001c;
    
}


.input-box input:hover{
    background-color: #eeeeee75;
}

@media screen and (max-width: 1100px) {
    .img-login{
        display: none;
    }
    .container{
        width: 90%;
        height: 70%;
        border-radius: 10px;
    }
    form{
      width: 90%
    }
    .login{
        width: 100%;
    }
}

