﻿@charset "UTF-8";
/********************************************
Octa Yazılım - http://octa.com.tr/  
ie6, ff, opera. chrome, safari
************************************************/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
    margin: 0;
    padding: 0;
}

:root {
    --success-text-color: #3c763d;
    --success-background: #dff0d8;
    --success-border-color: #d0e9c6;
    --info-text-color: #31708f;
    --info-background: #d9edf7;
    --info-border-color: #bcdff1;
    --danger-text-color: #843534;
    --danger-background: #f2dede;
    --danger-border-color: #ebcccc;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-size: 14px;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

:focus {
    outline: none;
}

input {
    font: 15px/24px "Lato", Arial, sans-serif;
    color: #333;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 1px;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*background-image: linear-gradient(0deg, #10163a18, rgba(28, 41, 85, 0.11)), url("/backimage.png");
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
    height: 100%;*/
}

.left-and-right, .left-side, .right-side {
    width: 100vw;
    height: 100vh;
}

.left-side {
    background: #072647;
    background: linear-gradient(188deg, #072647 0%, #0a2849 16%, #072647 28%, #092d53 39%, #11365e 56%, #072647 67%, #08284b 77%, #072647 87%, #383232 100%, #c4c7c9 100%, #072647 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.right-side {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.left-side-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.right-side-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 30rem;
}

    .right-side-content * {
        margin: .5rem 0;
    }

    .right-side-content .title {
        font-size: 1rem;
        font-family: 'Roboto', sans-serif;
        font-weight: 400;
        margin-bottom: 2rem;
        color: #09265c;
        padding: 1rem;
        -webkit-box-shadow: 0px 7px 10px -13px #09265c;
        box-shadow: 0px 7px 10px -13px #09265c;
    }

    .right-side-content input {
        height: 2rem;
    }

    .right-side-content .element-text {
        font-size: 16px;
        font-weight: 500;
        color: #09265c;
    }

.element {
    position: relative;
}

    .element i {
        position: absolute;
        right: 0;
    }

.logo {
    margin-bottom: 30%;
}

    .logo img {
        width: 20rem;
        height: 5rem;
    }

.logo-right {
    display: none;
    margin-top: 0;
}

    .logo-right img {
        width: 20rem;
    }

.forgot-pass {
    color: #072647;
    cursor: pointer;
    margin-top: 1rem;
}

.loginBtn {
    background: #072647;
    background: linear-gradient(188deg, #072647 0%, #0a2849 16%, #072647 28%, #092d53 39%, #11365e 56%, #072647 67%, #08284b 77%, #072647 87%, #383232 100%, #c4c7c9 100%, #072647 100%);
    border: none;
    color: white;
    font-size: 25px;
    height: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    width: 100%;
    cursor: pointer;
}

    .loginBtn span {
        cursor: pointer;
        position: relative;
        -webkit-transition: 0.5s;
        transition: 0.5s;
    }

        .loginBtn span:after {
            content: '\00bb';
            position: absolute;
            opacity: 0;
            top: 0;
            right: -20px;
            -webkit-transition: 0.5s;
            transition: 0.5s;
            color: #16a085;
        }

    .loginBtn:hover span {
        padding-right: 25px;
    }

        .loginBtn:hover span:after {
            opacity: 1;
            right: 0;
        }

@-webkit-keyframes right-slide {
    100% {
        right: 0;
    }
}

@keyframes right-slide {
    100% {
        right: 0;
    }
}

@-webkit-keyframes top-slide {
    50% {
        opacity: 0.5;
        font-size: 15px;
    }

    60% {
        opacity: 0.5;
        font-size: 17px;
    }

    80% {
        font-size: 20px;
        opacity: 0.7;
    }

    100% {
        font-size: 23px;
        opacity: 1;
        top: 15px;
    }
}

@keyframes top-slide {
    50% {
        opacity: 0.5;
        font-size: 15px;
    }

    60% {
        opacity: 0.5;
        font-size: 17px;
    }

    80% {
        font-size: 20px;
        opacity: 0.7;
    }

    100% {
        font-size: 23px;
        opacity: 1;
        top: 15px;
    }
}

.content {
    position: relative;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 160px;
    overflow: hidden;
    font-family: 'Lato', sans-serif;
    font-size: 35px;
    line-height: 40px;
    color: #ecf0f1;
}

.content__container {
    font-weight: 600;
    overflow: hidden;
    height: 40px;
    padding: 0 40px;
}

    .content__container:before {
        content: '[';
        left: 0;
    }

    .content__container:after {
        content: ']';
        position: absolute;
        right: 0;
    }

    .content__container:after, .content__container:before {
        position: absolute;
        top: 0;
        color: #16a085;
        font-size: 42px;
        line-height: 40px;
        -webkit-animation-name: opacity;
        -webkit-animation-duration: 2s;
        -webkit-animation-iteration-count: infinite;
        animation-name: opacity;
        animation-duration: 2s;
        animation-iteration-count: infinite;
    }

.content__container__text {
    display: inline;
    float: left;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

.content__container__list {
    margin-top: 0;
    padding-left: 110px;
    text-align: left;
    list-style: none;
    -webkit-animation-name: change;
    -webkit-animation-duration: 10s;
    -webkit-animation-iteration-count: infinite;
    animation-name: change;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.content__container__list__item {
    line-height: 40px;
    margin: 0;
}

@-webkit-keyframes opacity {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@-webkit-keyframes change {
    0%, 12.66%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    16.66%, 29.32% {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
    }

    33.32%, 45.98% {
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    49.98%, 62.64% {
        -webkit-transform: translate3d(0, -75%, 0);
        transform: translate3d(0, -75%, 0);
    }

    66.64%, 79.3% {
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    83.3%, 95.96% {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
    }
}

@keyframes opacity {
    0%, 100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes change {
    0%, 12.66%, 100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    16.66%, 29.32% {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
    }

    33.32%, 45.98% {
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    49.98%, 62.64% {
        -webkit-transform: translate3d(0, -75%, 0);
        transform: translate3d(0, -75%, 0);
    }

    66.64%, 79.3% {
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
    }

    83.3%, 95.96% {
        -webkit-transform: translate3d(0, -25%, 0);
        transform: translate3d(0, -25%, 0);
    }
}

.effect-1,
.effect-2,
.effect-3 {
    border: 0;
    padding: 7px 0;
    border-bottom: 1px solid #ccc;
}

    .effect-3 ~ .focus-border {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        z-index: 99;
    }

        .effect-3 ~ .focus-border:before,
        .effect-3 ~ .focus-border:after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: #1c4775;
            -webkit-transition: 0.4s;
            transition: 0.4s;
        }

        .effect-3 ~ .focus-border:after {
            left: auto;
            right: 0;
        }

    .effect-3:focus ~ .focus-border:before,
    .effect-3:focus ~ .focus-border:after {
        width: 50%;
        -webkit-transition: 0.4s;
        transition: 0.4s;
    }

@media only screen and (max-width: 992px) {
    .left-side {
        display: none !important;
    }

    .logo-right {
        display: block !important;
        position: absolute;
        bottom: 20px;
        width: 100%;
        text-align: center;
        left: 0;
    }

        .logo-right img {
            width: 16rem !important;
        }
}

@media only screen and (max-width: 576px) {
    .forgotmodal-content {
        width: 20rem !important;
    }

        .forgotmodal-content .forgot-text > .close {
            top: -60% !important;
        }

    .right-side-content {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 90%;
    }
}

.forgotmodal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    padding-top: 100px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: black;
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

/* forgotmodal Content */
.forgotmodal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 26rem;
    height: 26rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
}

    .forgotmodal-content .forgot-text span {
        color: #062444;
        font-size: 1rem;
        font-weight: 600;
        margin: auto;
    }

    .forgotmodal-content .forgot-text .close {
        color: #aaaaaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        top: -150%;
        position: relative;
    }

        .forgotmodal-content .forgot-text .close:hover,
        .forgotmodal-content .forgot-text .close:focus {
            color: #000;
            text-decoration: none;
            cursor: pointer;
        }

/* The Close Button */
.message {
    padding: .5rem;
    margin-bottom: .1rem;
}

    .message * {
        list-style: none;
    }

.success {
    color: var(--success-text-color);
    background-color: var(--success-background);
    border: 0.5px solid var(--success-border-color);
}

.info {
    color: var(--info-text-color);
    background-color: var(--info-background);
    border: 0.5px solid var(--info-border-color);
}

.danger {
    color: var(--danger-text-color);
    background-color: var(--danger-background);
    border: 0.5px solid var(--danger-border-color);
}

.messages-detail {
    color: var(--danger-text-color);
}