@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap");

* {
    font-family: "Nunito Sans", sans-serif;
}

/* CSS FOR LOGIN */

.auth-container {
    width: 500px;
    height: fit-content;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 1px 2px 5px 4px rgba(0, 0, 0, 0.12);
    -webkit-box-shadow: 1px 2px 5px 4px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 1px 2px 5px 4px rgba(0, 0, 0, 0.12);
    padding: 20px;
}

.auth-container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-container .logo img {
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
}
/* CSS FOR LOGIN */


/* Sidebar CSS */

.sidebar {
    display: flex;
    justify-content: start;
    align-items: start;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: aliceblue;
    flex-direction: column;
    gap: 10px;
}
.sidebar .pill-button {
    background-color: white;
    color: red;
    width: 100%;
    padding: 10px;
    text-decoration: none;
}
.sidebar .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 100px;
}
.sidebar .logo img {
    width: 200px;
}
.header {
    background-color: aliceblue;
    height: 60px;
    width: 100%;
}
.pad0 {
    --bs-gutter-x: 0rem;
}
/* Sidebar Css*/