@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;400;900&display=swap');

body {
    font-family: 'Roboto', sans-serif;
}

.logo {
    margin: 20px 0px;
    text-align: center;
}

.logo img {
    width: 60px;
}

.logo .logo-text {
    color: #DB2188;
    font-weight: 900;
    font-size: 1.4rem;
}

.wrapper {
    margin: 0 auto;
    background: whitesmoke;
    border-radius: 10px;
    padding: 40px 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    width:70%;
}

.form-field {
    padding: 10px 0px;
    width: 100%;
}

.form-title {
    padding: 10px 0px;
    text-align: center;
    font-weight: 900;
}

.form-field label {
    display: block;
    padding: 10px 0px 6px 0px;
}

.form-field input[type=text],
.form-field select {
    height: 35px;
    padding: 0px 10px;
    border-radius: 4px;
    width: 100%;
    border: 1px solid #DB2188;
}

.form-field input[type=text]:focus {
    border: 1px solid #DB2188;
    outline: none;
}

.form-field select:focus {
    border: 1px solid #DB2188;
    outline: none;
}

.saloon {
    display: flex;
}

.saloon .radio-wrapper {
    padding-right: 20px;
    display: flex;
}

.services {
    padding: 10px 0px;
    display: flex;
}

.services input[type=checkbox] {
    height: 25px;
    width: 25px;
    background: pink;
    padding: 0px 10px;
    margin-top: 6px;
    margin-right: 20px;
}

.services label {
    display: inline;
}

.form-field input[type=submit] {
    margin: 20px 0px;
    padding: 10px 30px;
    background: #DB2188;
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 900;
    font-size: 1.2rem;
}

.congrats {
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 0px 0px 40px 0px;
}

.checkmark {
    text-align: center;
}

.checkmark i {
    text-align: center;
    border-radius: 50%;
    background: #DB2188;
    color: white;
    margin: 0 auto;
    padding: 10px;
}

.success {
    width: 80%;
}

@media (min-width:80em) {
    .wrapper {
        width:50%;
    }
    .success {
        width: 50%;
    }
}