#edit-focal-point-form {
    margin-top: 50px;
    margin-bottom: 50px;
    background-color: white;
    border-radius: 10px;
    padding: 50px 75px;
    -webkit-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
    box-shadow: 0px 0px 10px -1px rgba(0,0,0,0.4);
}

#edit-focal-point .focal-point-name {
    font-size: 2em;
}





#edit-focal-point-form .acf-label label {
    color: #333;
    font-size: 14px;
    font-weight: 400;
}

#edit-focal-point-form input[type="text"] {
    color: #5D5D5D;
    font-family: "Open Sans";
    border: 1px solid rgba(151, 151, 151, 0.4);
    border-radius: 26px;
    background-color: #FFF;
    line-height: normal;
    margin: 0;
    margin-bottom: 10px;
    box-shadow: none;
    min-height: 50px;
    padding: 0px 20px;
}

#edit-focal-point-form .acf-form-submit input[type="submit"] {
    font-family: 'Open Sans';
    font-size: 16px;
    font-weight: bold;
    line-height: 20px;
    display: inline-block;
    min-width: 260px;
    max-width: 100%;
    padding: 20px 35px;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    text-align: center;
    vertical-align: top;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 35px;
    color: #fff;
    border: 1px solid #00a585;
    background: #00a585;
}

#edit-focal-point-form [data-name="website"], 
#edit-focal-point-form [data-name="phone"], 
#edit-focal-point-form [data-name="city"], 
#edit-focal-point-form [data-name="zip"] {
    width: 50%;
}

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

    #edit-focal-point-form {
        padding: 25px 15px;
    }

    #edit-focal-point-form [data-name="website"], 
    #edit-focal-point-form [data-name="phone"], 
    #edit-focal-point-form [data-name="city"], 
    #edit-focal-point-form [data-name="zip"] {
        width: 100%;
    }
    
    #edit-focal-point-form .acf-form-submit input[type="submit"] {
    
        min-width: 100%;
    }
}