/* Main Theme */
    :root
    {
        --thirdFontFamily: 'Lato', sans-serif;

        --mainColor:#ffbd59;
        --mainColorHover:#dd9b38;

        --secondaryColor:#475045;

        --buttonTextColor:#1e211d;
    }

    body
    {
        background-color: var(--secondaryColor);
    }
/* Main Theme */

.isForm
{
    border:none;
    border-radius:5px;

    width: 300px;
    height:28px;
    
    padding-left:6px;

    font-size:17px;
    font-family: 'Roboto', sans-serif;

    margin-bottom: 10px;
}
.isForm:focus
{
    border:var(--mainColor) solid !important;
    min-width: var(--isFormWidth);
    min-height:31px;
}
.isForm:focus-visible
{
    outline: none !important;
}

/* Buttons */
    .GBTN
    {
        border:transparent;

        height: 30px;
            
        border: none;
        border-radius: 50px;
        
        font-family:'Lato', sans-serif;
        font-size:20px;

        color:var(--buttonTextColor);

        padding-left:10px;
        padding-right:10px;
    }

    .GBTN
    {
        background-color: var(--mainColor);
    }
    .GBTN:hover
    {
        background-color:var(--mainColorHover);
        cursor: pointer;
    }
/* Buttons */