/*----------------------------------------------*/
/* Submission Form: Request An Appointment Page */
/*----------------------------------------------*/
.request-appointment-form-container {
    max-width: 850px;
    padding: 10px;
    margin: 20px auto;
    position: relative;
    text-align: center;

    h1 {
        font-size: 50px;
        font-weight: 700;
        margin: 10px auto 40px;
        color: #000;
    }

    & > p {
		font: 400 20px / 1.4 Lato, sans-serif !important;
        max-width: 700px;
        margin: auto;
        margin-bottom: 30px;
    }

    .simple{
        margin: 40px auto 20px;
        max-width: 550px;
        padding-right: 3px;
    }


    label {
        display: none;
    }

    input,
    textarea,
    select {
        width: 93%;
        display: table;
        margin: 10px auto;
        background-color: #d3d3d3;
        color: #000;
        border-radius: 5px;
        padding: 15px;
        font-size: 16px;
        border: none;
        box-shadow: inset 0 1px 3px 0 rgba(0,0,0,0.5);

        &:focus {
            background-color: #e3e3e3;
            outline-style: solid;
            outline-width: thin;
            outline-color: #374052;
        }
    }

    button {
        background-color: #b1de58;
        font-family: "Cabin";
        font-weight: 600;
        line-height: 1.2em;
        fill: #fff;
        color: #fff;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.21176470588235294);
        border-radius: 8px 8px 8px 8px;
        padding: 15px 25px 15px 25px;
        transition: all 0.25s;
        min-width: 200px;

        &:hover {
            background-color: #5aaae3;
            transition: all 0.25s;
        }

        &:focus {
            background-color: #5aaae3;
            outline-style: solid;
            outline-width: thin;
            outline-color: #5aaae3;
            transition: all 0.25s;
        }
    }

    textarea {
        height: 200px;
        margin-bottom: 30px;
    }
}

@media (max-width: 700px) {

    .request-appointment-form-container {

        h1 {
            font-size: 36px;
        }
    }
}
