body {
    background: #00b3e7;
    font-size: 25px;
    color: white;
    font-family: 'Kalam', sans-serif;
}

.container {
    margin: 8% 0;
}

.wrap {
    margin: 0 auto;
    max-width: 700px;
    min-width: 200px;
    text-align: center;
    /*background: rgba(255, 255, 255, 0.1);*/
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 5px;
    border: 2px solid white;
}

.feedback {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    border: 2px solid white;
    padding: 10px 0 5px;
    margin: 30px 2px;
}

.feedback .failure ul {
    list-style: none;
    margin: 5px 0 0;
    padding: 0;
}

input, textarea {
    border: 2px dashed white;
    border-style: none none dashed;
    background: none;
    text-align: center;
    font-family: 'Kalam', sans-serif;
    color: #efefef;
}

input:focus, textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
}

input {
    max-width: 90%;
}

textarea {
    resize: none;
    width: 90%;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: rgba(255, 255, 255, 0.4);
}
::-moz-placeholder { /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.4);
}
:-ms-input-placeholder { /* IE 10+ */
    color: rgba(255, 255, 255, 0.4);
}
:-moz-placeholder { /* Firefox 18- */
    color: rgba(255, 255, 255, 0.4);
}

.g-recaptcha {
    display: inline-block;
}

.btn-submit {
    border: 2px solid white;
    border-radius: 5px;
    padding: 5px 5px 0;
    background: none;
    cursor: pointer;
    outline: none;
    color: white;
    font-family: 'Kalam', sans-serif;
}

.btn-submit:hover {
    background: rgba(255, 255, 255, 0.1);
}