/* =-=-=-=-=-=-= FONTS =-=-=-=-=-=-= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
/* =-=-=-=-=-=-= FONTS =-=-=-=-=-=-= */

/* =-=-=-=-=-=-= RESET =-=-=-=-=-=-= */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;  
    margin: 0;
    list-style: none;
    text-decoration: none;
    font-size: 1.6rem;
}

:root {
    font-size: 62.5%;
    --white: #ECECEC;
    --details: #2d7aff;
    --black1: #2F2F2F;
    --black2: #242424;
    --black3: #1B1B1E;
    --success: #4CAF50;
    --error: #E53935;
    --warning: #FF9800;
    --neutral: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    background-color: var(--black3);
}

h1 {
    font-size: 2rem;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: var(--white);
}

input {
    border: none;
}
input:focus {
    outline: none;
}
button {
    font-family: 'Poppins';
    cursor: pointer;
}

*::-webkit-scrollbar {
    width: 5px;    
    height: 5px;
 }
  
*::-webkit-scrollbar-track {
    background: var(--black3);        
}
  
*::-webkit-scrollbar-thumb {
    border-radius: 20px;
    border: 100px solid var(--black1);   
}
fieldset {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 2px solid var(--details);
    border-radius: 5px;
    padding: 10px;
}
fieldset legend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 0 6px;
}
input[type=text], input[type=number], input[type=password], input[type=email] {
    width: 100%;
    background-color: var(--black1);
    border-radius: 5px;
    padding: 10px 4px;
    font-size: 1.4rem;
    color: var(--white);
    height: 35px;
  }
select {
    width: 100%;
    background-color: var(--black1);
    border-radius: 5px;
    padding: 10px 4px;
    font-size: 1.4rem;
    color: var(--white);
    height: 35px;
    border: none;
    outline: none;
}
/* =-=-=-=-=-=-= RESET =-=-=-=-=-=-= */