.subscribe-form {
    position: relative;
}

.subscribe-form input[type="email"] {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    border: none;
    outline: none;
    padding: 20px;
    padding-right: 200px;
    box-sizing: border-box;
    font-size: 18px;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-family: 'owsald', sans-serif;
    font-weight: 300;
}

.subscribe-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, .5);
}

.subscribe-form input[type="submit"] {
    cursor: pointer;
    width: 130px;
    height: 40px;
    border-radius: 40px;
    border: none;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #0a336e;
    /*font-family:'owsald',sans-serif;*/
    font-weight: 300;
    transition: .5s;
}

.subscribe-form input[type="submit"]:hover {
    background: #0351be;
}