* {
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    background: #1b1b1b;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizelegibility;
}

.container {
    max-width: 1140px;
    margin: auto;
    padding: 0 30px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

svg {
    display: block;
    margin: auto;
    width: 150px;
}

img {
    width: 75px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
}

h1 {
    color: white;
    text-align: center;
    font-size: 22px;
    margin-bottom: 5px
}

p {
    color: rgba(255,255,255, .6);
    font-weight: 400;
    margin-bottom: 50px;
}

#bgcolor {
    fill: #ed0c6e;
    animation-name: fill;
    animation-duration: .5s;
    animation-iteration-count: infinite;
}

@keyframes fill {
    0% {
        fill: #ed0c6e;
    }
    50% {
        fill: #37b8eb;
    }
    100% {
        fill: #ed0c6e;
    }
}

.success input {
    padding: 15px 0 15px 30px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: rgba(255,255,255, .8);
    margin-top: 15px;
    width: 100%;
    box-sizing: border-box;
    background :rgba(255,255,255, .1) url('../img/redirect.svg') no-repeat scroll 7px 14px;
    background-size: 16px;
}

.success input:focus {
    outline: none;
}

.resolved .content, .rejected .content, .success, .failed {
    display: none;
}

.resolved .success, .rejected .failed {
    display: block;
}

@media only screen and (min-width : 768px) {
    h1 {
        font-size: 38px;
    }

    .success input {
        font-size: 18px;
        padding-left: 60px;
        background-position: 17px 12px;
        background-size: 26px;
    }
}

