form{
    height: 100%;
    width: 100%;
}
/* 
input, select, textarea {
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.5;
    appearance: none;
    background-color: var(--dark-gray-2);
    color: var(--variable-light-blue);
    border: 1px solid var(--class-green);
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    outline: none;
}

input:hover, select:hover, textarea:hover {
    background-color: rgb(20, 20, 20);
}

input:focus, select:focus, textarea:focus {
    border-color: rgb(255, 0, 0);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
    outline: none; 
}
*/

label{
    font-size: 0.9em;
    font-weight: 500;
    color: var(--dark-gray);
    margin: 0 0 10px 0;
    padding: 0;
}

.cont-label-input{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin: 10px 0 10px 0;
}

.cont-50-50{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* TECHS */

.tech-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    background-color: var(--dark-gray-2);
}

.inp-tech{
    width: 50%;
    height: 50px;
}