html{
    font-size: 10px;
}
body{
    direction: rtl;
    font-size: 1.6rem;
    line-height: 1.5;
    font-family: "Dana-Regular";
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f3f0e7;
}
*{
    box-sizing: border-box;
}
/*

-- Reset Styles

*/
a {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
}


/*

/*

-- Components

*/
.app-btn {
    width: 18rem;
    height: 5.2rem;
    border-radius: 4rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*
Main
*/
.form-wrapper{
    margin-top: -3rem;
    width: 70rem;
    height: 90%;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 0.5rem 0.5rem 3rem 0.5rem;
    box-shadow: 0 0 2rem rgba(0, 0, 0 , .20);
    border-radius: 1rem;
    background-color: #fff;
    position: relative;
}
.form-title{
    margin: 1.5rem 0;
    font-family: "Dana-Bold";
    text-align: center;
    font-size: 2.5rem;
}
.form{
    width: 100%;
    height: 100%;
}
.fieldset{
    border: 1px solid #059212;
    padding: 1rem;
    border-radius: 1rem;
    margin-bottom: 0.5rem;
}
.fieldset__legend{
    font-family: "Dana-Bold";
}
.fieldset__label{
    font-family: "Dana-Medium";
}
.fieldset__input{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    border: none;
    outline: none;
    background-color: #f5f5f5;
    width: 100%;
    height: 4rem;
    border-radius: 1rem;
    padding: 0 1rem;
    font-family: "Dana-Medium";
    font-size: 1.4rem;
}
.fieldset__input::placeholder{
    font-size: 1.4rem;
    font-family: "Dana-Medium";
}
.button-wrapper{
    position: absolute;
    width: 100%;
    margin-right: -1rem;
    margin-left: -2rem;
    padding: 1rem 0;
    margin-top: -0.5rem;
    border-radius: 1rem;
}
.sumbit-btn{
  background-color: #06D001;
  margin: 0 auto;
  font-family: "Dana-Bold";
  cursor: pointer;
}



