.submit-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
}

.submit-btn{
    background: transparent;
    border: 1px solid rgb(0, 155, 194);
    border-radius: 10px;
    color: rgb(0, 155, 194);
    padding: 10px 15px;
    width: 20%;
    font-size: 20px;
    transition: all 0.5s ease-in;
}

.submit-btn:hover{
    background:rgb(0, 155, 194);
    color: #000;
}
input:focus, input:active{
    outline: none !important;
}