* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
}

html,
body,
input,
textarea,
select {
    font-weight: 500;
    line-height: 1.5;
    font-size: 16px;
    color: #B5B5C3;
    font-family: 'Roboto', sans-serif;
}

body {
    background: url(../images/background.jpg) no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

p {
    margin-top: 0;
    margin-bottom: 14px;
}

p:last-child {
    margin-bottom: 0;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

input[type="text"],
input[type="email"] {
    background-color: #F5F8FA;
    border-radius: 6px;
    padding: 16px 20px;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    border: none;
    box-shadow: none !important;
    width: 100%;
    color: #181C32;
    outline: none;
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
textarea:focus {
    background-color: #EFF2F4;
}

.form-field {
    margin-bottom: 24px;
}

.button {
    font-weight: 700;
    line-height: 1.2;
    padding: 14px 24px;
    background: #219653;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    color: #fff;
    transition: all 0.2s ease;
}

.button:hover {
    cursor: pointer;
    background-color: #168B48;
}

.submit-field {
    display: flex;
    justify-content: center;
}

.heading {
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 700;
    color: #181C32;
    font-size: 26px;
    line-height: 1.1;
}

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

.wrapper {
    width: 480px;
    margin: 0 auto;
}

.content {
    padding: 40px;
    background-color: #fff;
    box-shadow: 0px 0px 40px rgba(239, 240, 241, 0.7);
    border-radius: 9px;
}

.logo {
    text-align: center;
    margin-bottom: 15px;
}