* {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
}

body {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fa8072;
}

.box {
    position: relative;
    height: 20rem;
    padding-top: 30px;
    width: 36rem;
    padding-left: 30px;
    background-color: #ffb6c1;
    border-radius: 12px;
}

.box h1 {
    font-size: 22px;
    font-weight: bold;
}

.box .inp {
    width: 94%;
    margin-top: 10px;
    height: 12rem;
    padding-top: 10px;
    text-align: top;
    outline: none;
    border: 2px solid rgba(0, 0, 0, 0.4);
    padding-left: 10px;
    background-color: #ffffff;
}

.box .total {
    position: absolute;
    left: 2rem;
    bottom: 1.50rem;

}

.box .rem {
    position: absolute;
    right: 2rem;
    bottom: 1.50rem;

}
.box .rem .val {
 font-style: normal;
 color:red;
}
.box .total .val1 {
    font-style: normal;
    color: blue;
}