body{
    height: 100vh;
    width: 100vw;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: "Josefin Sans", sans-serif;
    font-size: 16px;
    background-color: black;
}

.container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 450px;
    height: 440px;
    border-radius: 8px 0px 0px 8px;
    background: linear-gradient(135deg, hsla(0, 80%, 86%, 0.5), hsla(0, 74%, 74%, 0.6)), url(./images/bg-pattern-desktop.svg);
    background-size: cover;
    background-position: center;
}

.content{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 0px 80px 24px 80px;
}

.form{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    padding-bottom: 24px;
    position: relative;
    align-content: center;
}

img{
    display:flex;
    width: 350px;
    height: 440px;
    transform: translateX(-20px);
    border-radius: 0px 8px 8px 0px;
}

.img-mujer-bs{
    display:flex;
}
.img-mujer-sc{
    display:none;
}


.logo{
    width: 30%;
    height: auto;
    margin-bottom: 20px;
    padding: 16px 42px 0px 24px;
    
}

h1{
    font-weight: 600;
    letter-spacing: 4px;
}

.title-color{
    color: hsl(0, 36%, 70%);
}

.title-color1{
    color: black
}

.content span{
    line-height: 1.5;
}

p{
    font-weight: 300;
    color: hsl(0, 36%, 70%);
    opacity: 1;
    margin-bottom: 0;
}

.button img{
    width: 16px;
    height: 16px;
    display: block;
    padding-left: 36px;
}

input{
    width: 300px;
    height: 30px;
    border-radius: 16px;
    border: none;
    
}

.button{
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
    
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 16px;
    width: 45px;
    height: 2rem;   
    position: relative;
    cursor: pointer;
    margin-left: -10%;
    background: linear-gradient(135deg, hsl(0, 80%, 86%), hsl(0, 74%, 74%));
}

input::placeholder{
    color: hsl(0, 36%, 70%);
    font-weight: 300;
    padding-left: 8px;
    opacity: 1;
}

input:focus{
    outline: none;
}

.error{
    display: none;
    border: none;
    width: 1.5rem;
    height: 1.5rem;   
    position: absolute;
    cursor: pointer;
    margin-left: 64%;
    bottom: 1.8rem;
}

.error-active{
    display: flex;
}

.input-active{
    border-color: hsl(0, 93%, 68%);
}

.text-error{
    display: none;
    align-items: left;
    justify-content: center;
    flex-direction: row;
    align-content: center;
    transform: translateY(190px) translateX(-30px);
    opacity: 1;
    position: absolute;
}

.text-error-active{
    display: flex;

}

@media (max-width: 430px) {

     .img-mujer-bs{
        display:none;
    }
    .img-mujer-sc{
        display:flex;
        align-items: center;
        width: 100%;
        padding: 12px 0px 0px 40px;
        justify-content: center;
        height: auto;
        border-radius: 0px;
    }

    .container{
        width: 100%;
        height: auto;
        border-radius: 0px;
        text-align: center;
        align-items: center;
        align-content: center;
        justify-content: center;
        display: flex;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .content{
        padding: 0px 24px 24px 24px;
        font-size: 18px;
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        align-content: center;

    }


    .text-error{
        margin-top: 56px;
        transform: translateY(300px) translateX(-40px);
    }

    .button img {
        width: 16px;
        height: 16px;
        position: relative;
        display: block; /* Asegurar que la imagen siempre se muestre */
        transform: translateX(10px);
    }

    .logo{
        width: 30%;
        height: auto;
        margin-bottom: 20px;
        padding: 16px 42px 0px 24px;
        display: block;
    }

    .form{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        padding-bottom: 24px;
        align-content: center;
    }

    .button img{
        
        padding-right: 52px;
    }

    .error{
     
        margin-left: 58%;
     
    }
}