@charset "UTF-8";

/**
 * This package is responsible for styling the web pages.
 * 
 * Copyright (C) 2023, José V S Carneiro
 * 
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by  
 * the Free Software Foundation, either version 3 of the License, or
 * any later version.
 *                                      
 * This program is distributed in the hope that it will be useful,    
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License 
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

/* informs that the form must occupy 90% of the width */
#form__center__body__element {
    height: 90%;
}

/* informs that the the div that contains the recover button must occupy 10% of the width */
#form__center__body__recover {
    height: 10%;
}

#form__center__body__recover a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
}

#form__center__body__recover a:hover {
    color: var(--ternary);
}

#form__center__body__element label {
    color: var(--secondary);
    font-size: 1.15em;
}

#form__center__body__element input, #form__center__body__element input:focus {
    border: none;
    outline: none;
}

/* fields that aren't buttons */
.form__field__element {
    background-color: transparent;
    color: var(--primary);

    font-size: 1.5em !important;

    border-bottom: thick solid var(--primary) !important;
    box-sizing: border-box;
}

#form__center__body__element input::placeholder {
    color: var(--secondary);
}

/* the code below works with the button     */
/*------------------------------------------*/

#form__center__body__submit {
    background-color: var(--primary);
    color: var(--quaternary);

    font-size: 1.5em !important;
}

#form__center__body__submit:hover {
    background-color: var(--secondary);
}

/* END BUTTON */

.form__field {
    height: 20%;
}
