.login_box{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    margin-top: 40px;
}

.login_space{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px;
    padding: 20px;
    width: 400px;
    background-color: white;
}

.login_heading{
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.main_login_form{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 25px;
    margin-top: 25px;
}

.input_box{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    width: 100%;
    /* background-color: rgb(255, 225, 210);
     */
     border: 1px solid rgb(232, 77, 0);
     padding-inline: 10px;
     padding-block: 5px;
     border-radius: 5px;
     gap: 10px;
}

.input_box img{
    width: 25px;
    height: 25px;
    /* background-color: ; */
}


.input_box input{
    outline: none;
    border: none;
    font-size: 0.8rem;
    flex-grow: 1;
}


.terms_noti{
    font-size: 0.8rem;
}

.main_login_form button{
    outline: none;
    border: none;
    background-color: rgb(232, 77, 0);
    color: white;
    font-size: 1rem;
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

.go_back_home{
    color: red;
    font-size: 1.2rem;
}


.another_one{
    font-size: 0.9rem;
    margin-top: 20px;
}

.error{
    color: red;
    background-color: rgb(255, 223, 223);
    padding: 5px;
    border-radius: 5px;
}


@media (max-width: 500px){
    .login_space{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        align-content: flex-start;
        gap: 10px;
        padding: 20px;
        width: 95%;
        background-color: white;
    }
}



