@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

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

/* container */

.container {
    height: 100vh;
    width: 100%;
    background: #201f21;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* input box */

.input-box {
    width: 400px;
    max-width: 90%;
    position: relative;
}

.input-box input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: 1px solid #ccc;
    outline: none;
    color: #fff;
    background: transparent;
}

.input-box input::placeholder {
    font-size: 16px;
}

/* button */

.input-box button {
    background: #fff;
    padding: 8px 12px;
    border: 0;
    outline: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

.input-box button i {
    font-size: 14px;
}

/* message */

#message {
    position: absolute;
    bottom: -30px;
    color: #fff;
    font-size: 15px;
    display: none;
}