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

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

html,
body {
    display: grid;
    height: 100vh;
    place-items: center;
    background: #000;
    text-align: center;
}

.container {
    width: 450px;
    background: #111;
    border: 1px solid #444;
    border-radius: 5px;
    padding: 20px 25px;
}

.container .text {
    color: #ccc;
    font-weight: 600;
    font-size: 26px;
    line-height: 35px;
}

.container .input-data {
    margin: 20px 5px 15px 5px;
}

.input-data .display {
    height: 45px;
    width: 100%;
    display: flex;
    position: relative;
}

.input-data .display input {
    height: 100%;
    width: 100%;
    outline: none;
    color: #eee;
    border: 1px solid #333;
    background: #222;
    padding: 10px;
    font-size: 17px;
    pointer-events: none;
    user-select: none;
}

.input-data .display span {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: grey;
    z-index: 999;
    display: none;
    cursor: pointer;
}

.input-data button {
    display: block;
    height: 45px;
    width: 100%;
    margin-top: 15px;
    border: 1px solid #444;
    outline: none;
    background: #1b1b1b;
    color: #999;
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-data button:hover {
    background: #222;
}