* {
    box-sizing: border-box;
}
body {
    font-family: Verdana;
    font-size: 12px;
}

.wrapper {
    width: 100%;
    max-width: 1027px;
}

.header {
    background-image: url('../Images/dnb_logo.jpg');
	background-repeat: no-repeat;
    height: 129px;
    width: 100%;
}

.main-content {
    padding: 0 20px;
}

.right-section, .left-section {
    width: 100%;
    margin-bottom: 15px;
}

@media (min-width: 600px) {
    .right-section, .left-section {
        width: 50%;
        float: left;
        margin: 0;
    }

    .right-section {
        margin-top: 20px;
    }
}

h1 {
    font-size: 20px;
}

label {
    display: block;
}

input[type=text] {
    display: inline-block;
    width: 100%;
    max-width: 200px;
    line-height: 30px;
    height: 30px;
}

button,input[type=submit] {
    background: #007272;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0 20px;
}

*[disabled=disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

button,input[type=submit]:hover, button,input[type=submit]:focus {
    background: #007272;
}

input[type=submit].link-styled {
    color: #000;
    text-decoration: underline;
    background: none;
    display: inline;
    padding: 0;
}

.submit-button {
    margin-left: 5px;
}
@media (max-width: 340px) {
    .submit-button {
        width: 100%;
        display: block;
        margin-top: 10px;
        margin-left: 0;
    }

    input[type=text] {
        max-width: none;
    }
}