﻿
/*#region MEDIA QUERY */
@media screen and (min-width: 1024px){
    #ContainerForm{
        margin-left:25%;
        margin-right: 25%;
        
    }
    #ContainerForm [type="text"] {
        width: 95% !important;
    }
        #ContainerForm textarea {
            width: 95% !important;
        }
    #ContainerForm input[type="email"] {
        width: 95% !important;
    }
}
@media screen and (max-width: 1023px) and (max-height: 740px) {
    #ContainerForm {
        margin-left: 0px;
        margin-right: 0px;
    }

        #ContainerForm [type="text"] {
            width: 90% !important;
        }
        #ContainerForm textarea {
            width: 90% !important;
        }
        #ContainerForm input[type="email"] {
            width: 95% !important;
        }
}
/*#endregion */

.btn-blue-custom {
    border: unset;
    background-color: #1C96EE;
    color: white;
    border-radius: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    transition: all 0.3s cubic-bezier(.25,.8,.25,1);
    padding: 5px 15px;
    cursor: pointer;
    margin: 2px;
}

    .btn-blue-custom:hover {
        background-color: #e1f3fb;
        color: black;
    }

    .btn-blue-custom:active {
        background-image: none;
        outline: 0;
        -webkit-box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
        box-shadow: inset 0 3px 5px rgb(0 0 0 / 13%);
    }

