:root {
    color-scheme: light dark;
}
@font-face {
    font-family: 'Inter';
    src: url('./src/fonts/Inter/Inter-VariableFont_opsz\,wght.ttf');
}
a{
    color: white;
}
*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
}
body{
    display: flex;
    height: 100vh;
    width: 100%;
    background: #171821;
    .nav{
        width: 239px;
        border-right: 1px solid #2c2d33;
        padding: 20px;
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: space-between;
        gap: 16px;
        font-weight: 500;
        .logo{
            img{
                width: 199px;
            }
        }
        nav{
            height: 100%;
            overflow-x: auto;
            ul{
                display: flex;
                flex-direction: column;
                gap: 16px;
                li{
                    a{
                        height: 44px;
                        padding: 10px;
                        border-radius: 6px;
                        display: flex;
                        align-items: center;
                        display: flex;
                        align-items: center;
                        gap :6px;
                        color: #4f5056;
                    }
                    a:hover{
                        background: #21222d88;
                    }
                }
                li.active {
                    a{
                        background: #a9dfd8;
                        color: #171821;
                    }
                    a:hover{
                        background: #73cabe;
                    }
                }
            }
        }
    }
    .body{
        width: 100%;
        overflow-y: auto;
        padding: 20px;
    }
}
.login-body{
    display: block !important;
    .container{
        padding-bottom: 30px;
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        height: max-content;
    }
    h1 {
        text-align: center;
        margin: 30px 0;
        max-width: 500px;
    }
    .images{
        display: flex;
        height: 100px;
        align-items: center;
        justify-content: center;
        gap: 25px;
        margin-bottom: 30px;
        img{
            height: 100%;
        }
    }
    form {
        background: #21222d;
        padding: 32px;
        border-radius: 10px;
        max-width: 530px;
        width: 100%;
    }
    .help{
        max-width: 400px;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    label {
        display: block;
        margin-bottom: 5px;
    }
    
    input, textarea, select {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        padding: 14.5px 12px;
        margin-top: 5px;
        margin-bottom: 20px;
        border: none;
        border-radius: 3px;
        transition: border-color 0.3s;
        background-color: #2b2b36;
    }
    textarea {
        min-height: 100px;
    }
    
    input:focus, textarea:focus, select:focus {
        border: #007bff;
        outline: none;
    }
    
    input::placeholder, textarea::placeholder {
        color: #aaa;
    }
    
    .submit-btn{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    button{
        font-size: 16px;
        cursor: pointer;
        padding: 14.5px 12px;
        margin-top: 5px;
        border: none;
        background: #171821;
        border-radius: 5px;
        box-sizing: border-box;
        transition: border-color 0.3s;
    }
    
    .active-mds{
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 10px;
        a{
            text-align: center;          
            transition: all ease .2s;
            &:hover{
                color: #007bff;
                text-decoration: underline;
                transition: all ease .2s;
            }
        }
    }
    
    button:hover{
        border-color: #007bff;
    }
    .error-message{
        color: #EE1122;
    }
    .success-message{
        color: #11EE22;
    }
}