@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: linear-gradient(90deg,#14BBCC, #2B3282);
}

.input-box{
    background: #fff;
    width:90%;
    max-width: 500px;
    border-radius: 5px;
    padding: 10px 20px;
    margin: 300px auto;
    display: flex;
    align-items: center;
    transition: all 1s;
}

.input-box:hover{
    box-shadow:  0 10px 10px rgba(0, 0, 0, 0.445);
}

.input-box input{
    width: 100%;
    padding: 10px 0;
    border: 0;
    outline: 0;
    font-size: 24px;
    color:#555;
}

.input-box img{
    width: 50px;
    cursor: pointer;
}

.input-box img:hover{
    background: rgba(235, 231, 231, 0.493);
}

header h2{
    margin-top: 15px;
    margin-left: 15px;
    color:#fff;
    font-size: 30px;
}

header h4{
    font-weight: 100;
    margin-left: 20px;
    color:#fff;
    font-size: 15px;   
}

h2:hover {
    color:#000;
    transition: all 0.5s ease-in;
}

h4:hover {
    color:#000;
    transition: all 0.5s ease-in;
}