@import url('https://fonts.googleapis.com/css?family=Be+Vietnam:100,300,400,500,600,700,800&display=swap');
@import url('https://cdn.jsdelivr.net/gh/tonsky/FiraCode@1.207/distr/fira_code.css');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css');

body {
    margin: 0;
    padding: 0;
    font-family: 'Be Vietnam', sans-serif;
    overflow: hidden;
}

/** Reset */
ul {
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: left;
}

.CodeMirror {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
}

.ide {
    position: relative;
    min-height: 100vh;
}
.ide .navigation {
    width: 320px;
    background: #353b48;
    height: 100vh;
    padding: 25px;
    text-align: center;
}
.ide .navigation .title {
    font-weight: 600;
    margin-top: 5px;
    color: #ccc;
    font-size: 14px;
}
.ide .navigation .nav {
    margin-top: 20px;
    padding-left: 15px;
}
.ide .navigation .nav i {
    margin-right: 5px;
}
.ide .navigation .nav .nav-item a {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    text-decoration: none;
    line-height: 14px;
}
.ide .navigation .nav .nav-drop {
    margin-bottom: 10px;
}
.ide .navigation .nav .nav-drop ul {
    display: none;
}
.ide .navigation .nav .nav-drop .actived {
    color: #fff;
}
.ide .navigation .nav .nav-drop.actived ul li a {
    color: rgba(255,255,255,.6);
}
.ide .navigation .nav .nav-drop ul {
    padding-left: 15px;
}
.ide .wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: calc(100% - 370px);
    height: 100%;
    background: #282a36 !important;

}
.ide .wrapper header {
    padding: 15px 25px;
    color: rgba(255,255,255,.5);
    background: rgba(0,0,0,.1);
    margin-bottom: 10px;
}
.ide .wrapper #editor  {
    width: 100%;
    resize: none;
    border: none;
}

.text-red { color: #e84118 }
.text-blue { color: #0097e6 }
.text-yellow { color: #fbc531 }
.text-white { color: #FFF }

.auth {
    background: url('../images/auth.jpg') center no-repeat;
}
.auth .card-auth {
    width: 420px;
    text-align: center;
    margin: 0 auto!important;
    margin-top: 22vh!important;
}
.auth .card-auth .logo {
    max-height: 35px;
    margin-bottom: 40px;
}
.auth .card-auth .card-content {
    position: relative;
    padding: 35px 20px;
    border-radius: 5px;
    background: #FFF;
    width: 420px;
    text-align: left;
}
.auth h1 {
    margin: 0;
}
.auth .input-control {
    width: calc(100% - 38px);
    padding: 15px 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: none;
    background: rgba(0,0,0,.1);
    margin-bottom: 10px;
}
.auth .input-control:focus {
    outline: none;
}
.auth .input-btn {
    border: none;
    cursor: pointer;
    background: rgba(113, 89, 193, 1);
    padding: 12px 40px;
    color: #FFF;
    border-radius: 5px;
    font-weight: 600;
    -webkit-transition: all ease .3s;
    -moz-transition: all ease .3s;
    -ms-transition: all ease .3s;
    -o-transition: all ease .3s;
    transition: all ease .3s;
}
.auth .input-btn:hover {
    opacity: .8;
}
.auth .alert {
    display: none;
    padding: 15px 25px;
    border-radius: 5px;
    background: tomato;
    color: #FFF;
    margin-bottom: 15px;
    line-height: 12px;
    font-size: 12px;
}

#toast-container div {
    box-shadow: none!important;
}