﻿/* Temel Ayarlar */
body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f7f6;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background-image: url('/images/signin-background.svg'); /* Update the URL here */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}



/* Sayfa ve Form Alanı Stilleri */
.page {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
    font-size: 10px;
}

.login-class {
    background-color: #fff;

    padding: 46px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 39%);
    width: 350px;
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[name="email"], input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="checkbox"] {
    margin-right: 5px;
}

.button {
    background-color: #3260a1;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-align: center;
    width: 80%;
    display: block;
    cursor: pointer;
    border: none;
    font-size: 12px;
    margin: 5%;
}

    .button:hover {
        background-color: #224870;
    }

.form-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

/* Uyarı ve Bilgi Metinleri */
.muted {
    color: #777;
}

.space-top {
    margin-top: 20px;
}


a {
    text-decoration: none; /* Alt çizgiyi kaldırır */
    color: #0000ff; /* Standart link rengi mavi */
}

    a:hover, a:focus {
        color: #000000; /* Fare üzerine gelince veya odaklandığında rengi siyah yapar */
    }


/* Checkbox ve Remember Me metni için container */
.checkbox-container {
    display: flex;
    align-items: center; /* İçerikleri dikey olarak ortalar */
}

/* Remember Me metni için label */
.checkbox-label {
    margin: 5px 5px;
    font-size: 12px;
}


/* Ana içerik konteyneri */
.content-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.favicon-container {
    margin-bottom: 20px; /* favicon ile login-class arasında boşluk */
}

*, *:before, *:after {
    box-sizing: border-box;
}

.animation-login-container {
    opacity: 0;
    transition: opacity 0.3s ease; /* Animasyon için geçiş efekti */
    visibility:hidden;
}

    .animation-login-container.active {
        opacity: 1;
        visibility: visible;
    }

.loginAnimation {
    border: none;
    position: absolute;
    z-index: 9;
    height: 20%;
    width: 20%;
    scale: 2;
}

@media (max-width: 768px) {

    .page {
        height: auto;
        min-height: 100vh; /* Ekran yüksekliğinin tamamını kaplar */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-class {
        margin: auto;
        width: 100%;
    }

    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .button {
        width: 100%;
        margin: 10px 0;
    }
}


@media (max-width: 1024px) {
    .page {
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .login-class {
        margin: auto;
        width: 100%;
    }

    .content-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
}
