/*

* Diseñado por: F.N, InfoZero.
* Para: infozero.net - 2024

*/
:root{
    --black: #252525;
    --lightblack: #2e2e2e;
    --white: #FFFFFF;
    --darkwhite: #EBEBEB;
    --lightgray: #808080;
    --lightgrayform: #dbdbdb;
    --lightdarkwhite: #f5f5f5;
    --lightestgray: #e0e0e0;
    --lightestgray-b: #eeeeee;
    --gray: #666666;
    --darkgray: #4d4d4d;
    --darkestgray: #333333;
    --red: #ff3e3e;
    --lightred: #ffb8b8;
    --darkred: #ca2929;
    
}

*{
    font-family: 'Satoshi-Regular',Arial, sans-serif !important;  
    box-sizing: border-box;          
}
html, body{
    margin: 0;
    padding: 0;
}
html{
    width: 100%;
    height: 100%;
}
body{
    box-sizing: border-box !important;
}
input, textarea, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}
