:root {
    --fontViga: 'Viga', sans-serif;
    --colortimegoldsblue: #2991d6;
    --blue-dark: #1b3c7f;
}   

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--fontViga);
}
.body-contact-all{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
    gap: 6rem;
}
.timegoldsbody__imgLOGO{
    width: 30rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background-color: #1b3c7f; */
}
.timegoldsbody__fraseform{
    text-align: center;
}
.timegoldsbody__imgLOGO .container-logo-contact-me{
    width: 25rem;
}
.timegoldsbody__imgLOGO .timegoldsbody__fraseform h1{
    font-size: 2rem;
    color: var(--colortimegoldsblue);
}
.timegoldsbody__imgLOGO .container-logo-contact-me img{
    width: 100%;
}
.container-form-contact-2fr{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}
.container-form-contact-1fr{
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
}
.inputs-form-contact-me{
    width: 100%;
    padding: .7rem;
    border: none;
    background-color: transparent;
    border-bottom: 2px solid var(--colortimegoldsblue);
    color: var(--colortimegoldsblue);
}
::placeholder{
    color:#aacce2;
}
.inputs-form-contact-me:focus-visible{
    outline: 2px solid #2991d6;
    border-bottom: 2px solid transparent;
}
.container-form-contact-1fr .inputs-form-contact-me-textarea{
    margin-top: .5rem;
    border: 2px solid var(--colortimegoldsblue);
    outline: none;
}
.contenedordivinput__submitpadre{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.btn-submit-contac-me{
    padding: .6rem 1rem .6rem 1rem;
    border: none;
    background-color: var(--blue-dark);
    color: white;
    border-radius: .4rem;
}
.container-form-all{
    /*background-color: rgb(237, 245, 245);*/
  	background-color: rgba(236,241,245,255);
    padding: 2rem 2rem 1rem 2rem;
}
.footerbody{
    padding: .5rem;
    background-color: var(--blue-dark);
    color: white;
    text-align: center;
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1000px){
    .body-contact-all{
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        /* background-color: rgb(41, 118, 118); */
    }   
    .timegoldsbody__imgLOGO{
        max-width: 30rem;
        width: 100%;
    }
    .timegoldsbody__imgLOGO .container-logo-contact-me{
        max-width: 25rem;
        width: 100%;
    }
    .container-form-all{

        padding: 0;
    }
    .contenedordivinput__submitpadre{
        flex-direction: column;
    }
    .labelinput{
        padding: .6rem;
    }
}