* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(69, 104, 50, 0.25);
    font-size: 14px;
}

.wrapper {
    width: 700px;
    max-width: 100%;
    padding: 25px;
    border-radius: 5px;
    margin: 25px auto 0;
    position: relative;
    background: #fff;
    box-shadow: 2px 2px 10px #00000080;
    border-top: 10px solid #456832;
}

.wrapper h2 {
    font-size: 24px;
    line-height: 24px;
    padding: 15px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px dotted #333;
}

.input-group {
    margin-bottom: 12px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 10px 0;
}

.input-box {
    width: 100%;
    margin-right: 12px;
    position: relative;
}

.input-box label {
    position: absolute;
    bottom: 43px;
}

.input-box:last-child {
    margin-right: 0;
}

.name {
    padding: 10px 10px 10px 40px;
    width: 100%;
    border: 1px solid #00000033;
    outline: none;
    letter-spacing: 1px;
    transition: 0.3s;
    border-radius: 3px;
    color: #333;
    box-shadow: inset 0 1px 1px 0 #0000001a;
}

.name:focus {
    -webkit-box-shadow: 0 0 2px 1px #1ab18880;
    -moz-box-shadow: 0 0 2px 1px #1ab18880;
    box-shadow: 0 0 2px 1px #1ab18880;
    border: 1px solid #456832;
}

.name:focus::-webkit-input-placeholder {
    color: #333;
}

.input-group i {
    height: 36px;
    width: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 1px;
    left: 1px;
    color: #13232fe6;
    border-radius: 2px 0 0 2px;
    transition: 0.3s;
    font-size: 18px;
    pointer-events: none;
    border-right: 1px solid #cccccc;
    border-bottom: none;
}

.name:focus + i {
    color: #456832;
    border-right: 1px solid #456832;
}

textarea {
    height: 125px;
}

.comm i {
    border: 1px solid #cccccc;
}

.comm label {
    bottom: 133px;
}

button {
    background: #456832;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: #fff;
    outline: none;
    padding: 0 10px;
    height: 50px;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    transition: 0.5s;
    width: 100%;
    font-size: 18px;
}

button:hover, button:focus {
    background-color: #dfb444;
}

/*header {*/
/*    background-color: #dfb444;*/
/*    color: #fff;*/
/*    padding: 1em;*/
/*    text-align: center;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    height: 50px;*/
/*}*/

@media screen and (max-width: 600px) {
    /* Additional styles for smaller screens */
    .wrapper {
        padding: 150px;
        margin: 15px auto 0;
    }

    .text-center {
        text-align: center;
    }

    img {
        width: 100%;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    @media screen and (max-width: 860px) {

        .wrapper {
            padding: 15px;
            margin: 15px auto 0;
        }

        .text-center {
            text-align: center;
        }
    }

}
