:root{
    font-size: 10px;
    --orange:#f15432
}
.formdiv{
    width: 100%;
    height: 80%;
    padding: 10px;
}
form{
    margin:5rem auto;
    border: 1px solid grey;
    width: 500px;
    border-radius: 10px;
    padding: 20px;
}
.form-inputs-wraper{
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-size: 15px;
    color: gray;
}
.form-logo{
    text-align: center;
    font-size: 25px;
    margin-bottom: 4rem;
}

.input{
    padding: 10px;
    margin-top: 5px;
    width: 100%;
    border-radius: 5px;
    border-color: gray;
    border-width: 1px;
}
.checkbox-wraper{
        display: flex;
        align-items: center;
    }
    .checkbox-wraper input{
    margin-right: 8px;
}
.login-btn{
    background-color: var(--orange);
    color: white;
    font-size: 15px;
}
