*{
    margin: 0;
    padding: 0;
    font-family: 'poppin' sans-serif;
    box-sizing: border-box;
}
.container{
    height: 100vh;
    width: 100%;
    background: #171718;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-box{
    width: 420px;
    max-width: 90%;
    position: relative;
}
.input-box input{
    color: #fff;
    width: 100%;
    height: 50px;
    padding: 0 12px;
    border-radius: 50px;
    background: transparent;
    outline: none;
    border: 1px solid #ccc;
}
button{
    border: 0;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    box-shadow: 3px -1px #797777;
}
.fa-solid{
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#message{
    position: absolute;
    bottom: -20px;
    color: #fff;
    font-size: 17px;
    left: 10px;
    display: none;
}
::placeholder{
    font-size: 15px;
}