*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.Emi{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 64px;
    height: 90vh;
    /* background: lightblue; */
    font-family: "Poppins", serif;
}
.Emi .e-container{
    width: 540px;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.40);
}
.e-container .h-text{
    background: rgb(78,113,238);
    background: linear-gradient(90deg, rgba(78,113,238,1) 34%, rgba(145,167,245,1) 53%, rgba(78,113,238,1) 72%);
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 5px;
}

.e-container h2{
    font-size: 24px;
    font-weight: 500;
    font-family: "Lora", serif;
    margin-left: 35%;
    padding: 8px 8px;
}
/* .e-container .div-bar{
    display: block;
    width: 120px;
    background: lightsalmon;
    height: 6px;
    border-radius: 10px;
    margin: 8px 0px;
} */
.e-container .calculator{
    position: relative;
    flex-direction: row;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 10px 0px;
    margin-top: 10px;
}
.e-container .calculator .calc-input{
    position: relative;
    width: 50%;
    justify-content: space-around;
    padding: 5px 10px;
    display: block;
}
.e-container .calculator .calc-input input{
    width: 100%;
    height: 30px;
    padding: 18px 14px;
    font-weight: 300;
    font-size: 16px;
    border: 1px solid #7d7d7d;
    border-radius: 5px;
}
.calculator .calc-input input:focus{
    outline: none;
    border: 1px solid lightcoral;
}
.calculator .calc-input label{
    color: black;
    font-size: 16px;
    padding: 2px 4px;
}
.calculator .calc-input button{
    width: 100%;
    padding: 8px 12px;
    margin-top: 22px;
    font-weight: 650;
    cursor: pointer;
    /* background: rgba(0, 0, 255, 0.744); */
    background: rgb(78,113,238);
    background: linear-gradient(90deg, rgba(78,113,238,1) 30%, rgba(145,167,245,1) 53%, rgba(78,113,238,1) 74%);
    border: 0;
    border-color: rgba(0, 0, 255, 0.744);
    border-radius: 5px;
    letter-spacing: 0.5px;
    color: white;
    font-size: 14px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.e-container .calculator-result{
    position: relative;
    display: block;
    /* padding: 10px; */
    padding: 10px 10px 10px 0;
    /* margin: 20px 0; */
}
.e-container .calculator-result ul{
    width: 100%;
    /* background: #96125110; */
    padding: 10px 15px;
    border-radius: 5px;
}
.e-container .calculator-result li{
    list-style: none;
    line-height: 28px;
    font-size: 16px;
    font-weight: 400;
}
.e-container .calculator-result .loan_emi,
.e-container .calculator-result .loan_principle,
.e-container .calculator-result .loan_interest,
.e-container .calculator-result .loan_total{
    font-size: 16px;
    font-weight: 550;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}
.e-container .note{
    position: relative;
    width: 100%;
    /* background-color: antiquewhite; */
    padding: 10px 15px;
}
.e-container .note h3{
    padding: 5px;
    font-size: 18px;
    font-weight: bold;
    font-family: "Lora", serif;
}
.e-container .note ol{
    width: 100%;
    margin-left: 15px;
}
.e-container .note ol li{
    font-size: 14px;
    letter-spacing: .2px;
}