/* ================================================================== */
/* ============================= GENERAL ============================ */
/* ================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Consolas', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #0A0A0A;
}

input {
    width: 100%;
    height: 52px;

    border-radius: 16px;

    background-color: rgba(255, 255, 255, 0.02);
    border: none;
    outline: none;
    color: white;
    padding: 10px 20px;

    color: white;
    font-size: 15px;
    font-weight: 500;
}

.primary-button {
    background-color: #ffffff;
    color: black;
    font-weight: 500;
    font-size: 16px;
}

.primary-button:hover {
    background-color: #eeeeee;
    cursor: pointer;
}

.profile_title {
    font-weight: 500;
    font-size: 20px;
    color: white;
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100vh;
}

.login-login-input {
    text-align: center;
}

.login-tile {
    width: 430px;
    height: 420px;
    border-radius: 30px;

    background-color: rgba(240, 181, 255, 0.02);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    padding: 40px 25px;

    overflow: hidden;
}

.login-tile-profile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    width: 100%;
}

.login-tile-profile-pic {
    width: 95px;
    z-index: 99;

    opacity: 0.1;
}

.login-tile-profile-logo {
    width: 95px;
    z-index: 99;
}

.login-tile-inputs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 15px;

    width: 100%;
}

.login-tile-inputs input[type=password] {
    font-size: 24px;
    letter-spacing: 10px;
    text-align: center;
}

.sidebar {
    width: 12%;
    min-width: 400px;
    height: 90vh;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-content: center;

    color: white;

    gap: 20px;
}

.sidebar h1 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

.window {
    width: 88%;

}

.sidebar-selected {
    background-color: rgba(255, 255, 255, 0.06) !important;
    transition: all .03s ease-in-out;
    color: white !important;
}

.sidebar-profile {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;

    border: rgba(255, 255, 255, 0.05) 1px solid;
}

.sidebar-menu {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 30px;
    padding: 30px 20px;

    display: flex;
    flex-direction: column;
    gap: 15px;

    border: rgba(255, 255, 255, 0.05) 1px solid;
}

.sidebar-menu button {
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    padding: 20px 30px;

    width: 100%;
    border: none;
    outline: none;

    color: rgb(155, 155, 155);
    font-size: 16px;

    text-align: left;

    transition: all .03s ease-in-out;
}

.sidebar-menu button:hover {
    transition: all .03s ease-in-out;
    cursor: pointer;
    color: rgb(206, 206, 206);
}

.main {
    width: 100%;
    height: 90vh;

    display: flex;
    justify-content: space-between;
}

iframe {
    width: 100%;
    height: 99vh;
}

.container2 {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 20px;
    max-width: 95%;
    margin: auto;
    justify-items: center;
    justify-content: center;
    align-items: end;
    flex-wrap: wrap;
}