* {
    margin: 0;
    padding: 0;
    font-family: "Poppins",sans-serif;
}

body {
    display: flex;
    justify-content: center;
    padding: 0 10px;
    align-items: center;
    background-color: blueviolet;
    min-height: 100vh;
    /* height: 100px; */
}

#container {
    width: 100%;
    max-width: 700px;
    background-color: antiquewhite;
    border-radius: 10px;
    box-shadow: 0 10px 20px;
    padding: 30px;
}

.wrapper {
    border: solid #ccc 1px;
    border-radius: 10px;
}

.text-input {
    display: flex;
    border-bottom: 1px solid #ccc;
}

.from-text {
    border-right: 1px solid #ccc;
    border-radius: 0px;
}

textarea {
    height: 300px;
    width: 100%;
    border-radius: 10px;
    resize: none;
    padding: 10px;
    font-size: 18px;
    outline: none;
}

/* .row,
.icons {
    cursor: pointer;
    font-size: 16px;
    justify-content: center;
} */


.controlss ,li, .icons ,i {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-right: #000 solid; */
}
/* .controlss .row.icons {
    width: 40%;
} */

/* .controlss {
    list-style: none;
    display: flex;
    border-right: #000 ;
} */

.controlss .row.from .icons {
    padding-right: 15px;
    border-right: 3px solid #ccc;
}

.controlss .row.to .icons {
    padding-left: 15px;
    border-left: 3px solid #ccc;
}
.controlss{
    padding: 10px 15px ;
}
.controlss  .row .icons i {
    width:50px;
    cursor: pointer;
    color: #333 ;
    font-size: 25px;

    /* justify-content: center; */
}

select {
    color: #333;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 20px;
    margin: 10px;
}

button {
    width: 100%;
    padding: 10px;
    border: none;
    color: #000;
    cursor: pointer;
    margin-top: 20px;
    background-color: blueviolet;
    border-radius: 5px;
    font-size: 18px;
} 