
:root{
    /* COLORS */
    --dark-bg-color: #313131;
    --light-secondary-color: #f7f7f7;
    --background-color: #fff;
    --text-color: #fff;
    --secondary-color:#451b96;
    --secondary-color-dark: #313131;
    --bs-secondary-color: #575757;
    --color: #9176FF;
    --dark-color: #575757;
    --full-black:#171719;
    --dark-mode:#3e4147;
    --dark-icon-color: #fff;
    --light-color: #f7f7f7;
    --light-icon-color: #FFDE59;
    --btn-size: 105px;
    --indicator-size: 50px;
    --grid-wrapper-bg: #fff;
}

/* intial body colors */
body.perso{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--background-color);
}

main {
    display: block;
    justify-content: center;
    align-items: center;
	width: 100%;
    min-height: calc(100vh - 100px);
}

section {
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
}

header {
    grid-area: header;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 10px;
}

aside {
    grid-area: aside;
    border-right: 1px solid grey; 
    padding:20px;
    grid-column: 1/2;
    grid-row: 2/3;
}

footer {
    color: white;
    grid-area: footer;
    background-color: #451b96;
    text-align: center;
    padding: 5px;
}

input, button {
    border: none;
    background-color: var(--background-color);
    border-bottom-style: solid;
    border-bottom-width: 10px;
    justify-content: center;
    border-width: 0.3px;
    width: 100%;
    border-color: var(--secondary-color);
}
.button-login {
    background-color: #000;
    color: var(--text-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    height: 40px;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.button-login:hover {
    background-color: var(--dark-bg-color);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px; 
    width: 100%;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 25%;
}

.nav-tabs .nav-link {
    color: var(--full-black);
}

.text-muted-custom {
    color: var(--bs-secondary-color);
}

.span .text-muted-custom {
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-select {
    max-width: 500px;
}