:root{
    --gray-lg:  #F4F4F4;
    --gray:  #DADFE0;
    --gray-dr:  #131412;
    --blue-lg:  #C4DAFA;
    --blue-dr:  #1B96F6;

    --bgcolor:#282534;
    --bgcolordr:#191927;
    --bgcolorlg: #322e3f;
    --textcolor:#E3E5E8;
    --graycolor:#43333F;
    --purple:#6261FE;
    --purple-hover:#5351F8;
    --purple-active:#6F6FFF;
}
.bgdark{
    background: var(--bgcolorlg);
}
.borderdark{
    border: 1px solid var(--bgcolor);
}
body{
    background:var(--bgcolor);
}
body, html{
    width: 100%;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
.tr, .en{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.en{
    background:var(--bgcolor);
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    color: var(--textcolor);
}
.tr{
    position: fixed;
    top: 100%;
    left: 0;
    background-color:var(--graycolor);
    color:var(--textcolor);
    transition: all 250ms;
    z-index: 2;
    border-radius: 5000px 5000px 0 0;
}
header{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    width: 100%;
}
header div.menu{
    width: 100%;
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    margin: 0;
    padding: 0;
}
header div.menu a{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    background-color: var(--bgcolordr);
    color: white;
    border-right: 1px solid #2a2a29;
    cursor: pointer;
    padding: 10px 0;
}

header div.menu a:last-child{
    border-right: 0;
}
header div.menu a:hover{
    background-color:#2a2a29;
}
header div.menu a:active{
    background-color:var(--graycolor);
}
.en img, .tr img{
    width: 100%;
    max-width: 220px;
    display: none;
}
.color-white{
    color: var(--textcolor);
}
.btn-default{
    background: var(--purple);
    border-color: var(--purple);
    color: var(--textcolor);
}
.btn-default:hover{
    background: var(--purple-hover);
    border-color: var(--purple-hover);
    color: var(--textcolor);
}
.btn-default:active{
    background-color: var(--purple-active);
    border-color: var(--purple-active);
    color: var(--textcolor);
}
.form-signin {
    max-width: 330px;
    padding: 1rem;
}