@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

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

body {
    background: linear-gradient(105deg, #90beff, #7cacf5);
    font-size: 16px;
}

.container {
    width: 90%;
    min-height: 90vh;
    margin: 2rem auto 0rem auto;
    color: white;
    max-width: 545px;
    padding: 1rem;
}

.container h1 {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: clamp(1.5rem, 5vw, 2.1rem);
}

h1 img {
    width: 4rem;
    max-width: 100%;
    height: auto;
    margin-right: 1rem;
}

button img {
    width: 25px;
    margin-right: 8px;
}

.container button {
    display: flex;
    align-items: center;
    background: linear-gradient(#9418fd, #571094);
    color: white;
    font-size: 1rem;
    outline: none;
    border: none;
    border-radius: 40px;
    padding: 15px 25px;
    margin: 30px 0px 20px;
    cursor: pointer;
    white-space: normal;
    text-align: center;
    font-weight: bold;
}

.input-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    min-height: 10em;
    background: white;
    color: #333;
    padding: 20px;
    margin: 20px 0;
    outline: none;
    border: none;
    border-radius: 5px;
    word-wrap: break-word;
}

.input-box img {
    width: 25px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    cursor: pointer;
}