﻿html {
    font-size: 14px;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    height: 100vh;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.5); /* Arka plan rengi: Beyaz ve %50 saydamlık */
}

.loginButton {
    position: fixed;
    top: 20px; /* İstediğiniz yüksekliği ayarlayın */
    right: 20px; /* İstediğiniz sağlıkta ayarlayın */
    padding: 10px 20px; /* İsteğe bağlı: Butonun içeriğine göre ayarlayın */
    background-color: #007bff; /* İsteğe bağlı: Butonun arka plan rengini ayarlayın */
    color: #fff !important; /* İsteğe bağlı: Buton metnin rengini ayarlayın */
    border: none; /* İsteğe bağlı: Buton kenarlık stilini ayarlayın */
    border-radius: 5px; /* İsteğe bağlı: Buton köşe yuvarlaklığını ayarlayın */
    text-decoration: none; /* İsteğe bağlı: Buton metninin altını çizmeyi kaldırın */
    cursor: pointer; /* İsteğe bağlı: Fare imlecinin buton üzerinde el göstergesi olmasını sağlayın */
}


.search {
    position: relative;
    box-shadow: 0 0 40px rgba(51, 51, 51, .1);
}

    .search input {
        height: 60px;
        text-indent: 25px;
        border: 2px solid #d6d4d4;
    }


        .search input:focus {
            box-shadow: none;
            border: 2px solid blue;
        }

    .search .fa-search {
        position: absolute;
        top: 20px;
        left: 16px;
    }

    .search button {
        position: absolute;
        top: 5px;
        right: 5px;
        height: 50px;
        width: 110px;
        background: blue;
    }
#lblError {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    color: #000;
    width: 100%;
    margin-top: 5px;
}
.form-group{
    margin-bottom:10px;
}

.modal {
    display: none; /* Modalı gizleyin */
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
    z-index: 99999
}
.modal-dialog {
    max-width: 400px;
}
    .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 1rem;
    border: 1px solid #888;
    width: 80%;
}
.modal-header {
    padding:0px;
}
    .form-title {
    margin: -2rem 0rem 2rem;
}
.btn-round {
    border-radius: 3rem;
}

.delimiter {
    padding: 1rem;
}

.close {
    color: #aaa;
    float: right;
    font-size: 12px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.bg {
}

.container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 9999;
}

@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");

svg {
    font-family: "Russo One", sans-serif;
    width: 100%;
    height: 100%;
}

    svg text {
        animation: stroke 5s infinite alternate;
        stroke-width: 2;
        stroke: #FFFFFF;
        font-size: 100px;
    }

@keyframes stroke {
    0% {
        fill: rgba(72,138,204,0);
        stroke: rgba(255,255,255,1);
        stroke-dashoffset: 25%;
        stroke-dasharray: 0 50%;
        stroke-width: 2;
    }

    70% {
        fill: rgba(72,138,204,0);
        stroke: rgba(255,255,255,1);
    }

    80% {
        fill: rgba(72,138,204,0);
        stroke: rgba(255,255,255,1);
        stroke-width: 3;
    }

    100% {
        fill: rgba(72,138,204,1);
        stroke: rgba(255,255,255,0);
        stroke-dashoffset: -25%;
        stroke-dasharray: 50% 0;
        stroke-width: 0;
    }
}

.wrapper {
    background-color: #FFFFFF
}

;
