@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lexend Deca', sans-serif;
}

:root {
    --white: #FFF;
    --whitesmoke: #F9F9F9;
    --light-grey: #ECECEC;
    --grey: #C4C4C4;
    --medium-grey: #A7A7A7;
    --deep-grey: #343434;
    --black: #000000;
    --blue: #1B77F3;
    --red: #CF3C3F;
  }

  main{
    display: flex;
  }

.login{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    min-height: 100vh;
    padding: clamp(35px, 8%, 70px); /* clamp(min, preferencia, max); */
}

.wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login__logo{
    width: 130px;
    margin-bottom: 80px;
}

.login__title{
    color: var(--deep-grey);
    font-size: 1.5em;
    margin-bottom: 30px;
}

.login__label{
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.input{
    width: 100%;
    background-color: var(--light-grey);
    border: 2px solid transparent;
    border-radius: 5px;
    outline: none;
    font-size: 0.9em;
    padding: 25px 10px 10px;
    font-weight: 600;
    color: var(--deep-grey);
}

.login__label span{
    position: absolute;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--medium-grey);
    margin: 20px;
    cursor: text;
    transition: all 200ms ease;
}

.input:focus{
    background-color: var(--whitesmoke);
    border: 2px solid var(--deep-grey);
}

.login__label .span-active{
    font-size: 0.7em;
    margin: 8px 10px;
}

.login__icons{
    display: flex;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.login__icons img{
    width: 20px;
}

.icons__button{
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

.login__icons .icons__button:nth-child(1){
    background-color: var(--blue);
}

.login__icons .icons__button:nth-child(2){
    background-color: var(--light-grey);
}

.login__icons .icons__button:nth-child(3){
    background-color: var(--black);
}

.login__label--checkbox{
    width: 100%;
    margin: 15px 0 50px;
    font-size: 0.9em;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.input--checkbox{
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: var(--light-grey);
    margin-right: 8px;
    border-radius: 3px;
}

.input--checkbox:checked{
    background-color: var(--red);
}

.input--checkbox:checked::after{
    content: "";
    width: 5px;
    height: 10px;
    border: 3px solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
    display: block;
    margin: 2px 6px;
}

.login__button{
    width: 60px;
    height: 60px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--red);
    border-radius: 20px;
    border: none;
    cursor: pointer;
    margin-bottom: 60px;
}

.login__button svg{
    fill: white;
}

.login__button:disabled{
    cursor: auto;
    background-color: white;
    border: 2px solid var(--light-grey);
}

.login__button:disabled svg{
    fill: var(--light-grey);
}

.login__link{
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--medium-grey);
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: 700;
}

.wallpaper{
    width: 100%;
    background-image: url('../assets/wallpaper.jpg');
    background-size: cover;
    background-position: center;
    flex: 1;
}