.top{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.top-left{
    background: url(./assets/images/login.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 70vw;
    height: 85vh;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem;
}

.top-left a{
    display: flex;
    align-items: center;
}

.top-left a img{
    width: 2.5rem;
}

.back-text{
    font-family: mulishBold;
    color: white;
    font-size: 1.5rem;
    text-transform: capitalize;
}

.top-right{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.0rem;
}

.top-right a img{
    width: 5rem;
}

.login-head{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.login-head-main{
    text-transform: uppercase;
    color: #E4CA8F;
    font-family: mulishBlack;
    font-size: 2.5rem;
}


.login-head-sub{
    font-size: 1rem;
    font-family: poppins;
    color: white;
    text-align: center;
    width: 80%;
}

#error{
    font-size: 1.5rem;
    color: #eb2121;
    font-family: mulishBold;
}
form{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 2rem;
}

.inputs{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

input[type=text],
input[type=password]{
    width: 25rem;
    height: 3.5rem;
    padding: 0.5rem;
    border: none;
    border-bottom: 2px solid #dddddd;
    background: transparent;
    font-family: poppins;
    font-size: 1.1rem;
    color: white;
}

input[type=submit]{
    width: 19.7rem;
    cursor: pointer;
    height: 5rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    border-radius: 50px;
    border: none;
    outline: none;
    margin-top: 1rem;
    font-family: mulishBold;
    font-size: 1.5rem;
    color: #634221;
    text-transform: uppercase;
}

@media screen and (max-width: 756px){
    .top{
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .top-left{
        background: none;
        height: 2rem;
        /* align-items: center; */
    }
}