@import url(https://fonts.googleapis.com/css?family=Open+Sans);
body {
    font-family: 'Open Sans', sans-serif;
    background-repeat: no-repeat;
    /*
  background: rgb(1, 38, 144);
    background: -moz-linear-gradient(132deg, rgba(1, 38, 144, 1) 0%, rgba(10, 82, 161, 1) 31%, rgba(34, 177, 198, 1) 100%);
    background: -webkit-linear-gradient(132deg, rgba(1, 38, 144, 1) 0%, rgba(10, 82, 161, 1) 31%, rgba(34, 177, 198, 1) 100%);
    background: linear-gradient(132deg, rgba(1, 38, 144, 1) 0%, rgba(10, 82, 161, 1) 31%, rgba(34, 177, 198, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#012690", endColorstr="#22b1c6", GradientType=1);
*/
    background: rgb(205, 109, 89);
    background: linear-gradient(90deg, rgba(205, 109, 89, 1) 0%, rgba(149, 73, 149, 1) 70%, rgba(96, 86, 168, 1) 100%);

    height: 100vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    color: white;
}

img {
    max-width: 200px;
    box-shadow: 0px 0px 10px -1px rgba(0, 0, 0, 0.5);
    margin: 20px;
}

li {
    font-weight: 900;
    font-size: 1.5rem;
    color: #ff978d;
}

h1,
h2 {
    margin: 20px 0;
}

input {
    border: none;
    padding: 10px 40px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .2);
}

::placeholder {
    color: rgba(255, 255, 255, .6);
}

input:hover {
    background: rgba(255, 255, 255, .8);
    color: #47495a;
}

ul {

    padding: 10px 50px;
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.2);
    list-style-type: none;
}

.row {
    height: 70px;
}

/* button */
.action-button {
    padding: 10px 40px;
    margin: 0px 10px 10px 0px;
    border: none;
    border-radius: 7px;
    background-color: #ff978d;
    color: #FFF;
    text-decoration: none;
}

.animate {
    transition: all 0.1s;
    -webkit-transition: all 0.1s;
}

.action-button:hover {
    border: 0;
    box-shadow: 0 8px 12px rgba(50, 50, 93, .4), 0 1px 3px rgba(0, 0, 0, .08);
    outline: 0;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px)
}

.action-button:active {
    border: 0;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    outline: 0;
    -webkit-transform: translateY(1px);
    transform: translateY(1px)
}