﻿/* 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;
}


body, html {
    min-height: 100vh; /* Viewport yüksekliğine göre minimum yükseklik */
    display: flex;
    justify-content: center; /* İçeriği yatay olarak ortalar */
    align-items: center; /* İçeriği dikey olarak ortalar */
    padding: 20px; /* Küçük ekranlarda içerik etrafında biraz boşluk bırakır */
}



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

.reset-class {
    background-color: #fff;
    padding: 46px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 39%);
    width: 350px;
    max-width: 600px;
}

.max-width-s {
    width: 80%;
}


.form-group {
    width: 100%; /* Form gruplarını tam genişlik yapar */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.muted {
    color: #777;
    margin: 5px;
}

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

#email, #verificationCode, #newPassword {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}



.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: 16px;
    margin: 5%;
}

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


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 */
    }




.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.reset-class {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px; /* Maksimum genişliği sınırlar */
    padding: 20px;
    box-sizing: border-box;
}


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

/* Custom toast CSS */
.custom-toast {
    visibility: hidden;
    min-width: 250px;
    background-color: #3260a1;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    position: fixed;
    z-index: 1;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

    .custom-toast.show {
        visibility: visible;
        opacity: 1;
        transition-delay: 0s;
    }

@media (max-width: 768px) {


    input[type="email"], .button, input[type="verificationCode"] {
        width: 40vw;
        margin: 5px 0;
    }

    .button {
        width: 90%; /* Butonu tam genişlik yapar */
        display: flex; /* Flexbox modelini uygular */
        justify-content: center; /* İçeriği yatay olarak ortalar */
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .reset-class {
        width: 80%; /* Konteyner için biraz daha geniş, ancak tam ekran kaplamayan bir genişlik */
    }

    /* Gerektiğinde diğer özelleştirmeler */
}
