﻿/*#region Genel Sayfa Ayarları */
body {
    background-color: #f8f8f8;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}
/*#endregion */

/*#region Giriş Sayfası Başlık ve Logo */
.singInUpBaslik img {
    width: 600px;
    height: auto;
    max-width: 90%;
    transition: transform 0.3s ease;
}

    .singInUpBaslik img:hover {
        transform: scale(1.05);
    }

.baslik {
    position: relative;
    text-align: center;
    color: #f6791d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

    .baslik hr {
        position: absolute;
        top: -3px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #f6791d;
    }

    .baslik .yazi {
        background: #fff;
        padding: 0 10px;
        position: relative;
        z-index: 1;
        font-size: 1.1rem;
    }
/*#endregion */

/*#region Input Stilleri */
input[type="text"],
input[type="password"] {
    background-color: #fff;
    border: 2px solid #e5e5e5;
    color: #333;
    font-size: 16px;
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.25s ease;
}

    input[type="text"]:focus,
    input[type="password"]:focus {
        background-color: #fff;
        border-color: #f6791d;
        box-shadow: 0 0 0 0.2rem rgba(246, 121, 29, 0.25);
        outline: none;
    }

.inputbg {
    background-color: #fff;
    text-align: left;
}
/*#endregion */

/*#region Giriş Butonu */
.btnLogin {
    color: #fff;
    background-color: #f6791d;
    border: 2px solid #f6791d;
    font-weight: 700;
    letter-spacing: 0.4px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .btnLogin:hover {
        background-color: #fff;
        color: #f6791d;
        box-shadow: 0 0 0 0.2rem rgba(246, 121, 29, 0.25);
    }
/*#endregion */

/*#region Şifremi Unuttum Linki */
.forgotPassword {
    color: #f6791d;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-decoration: none;
}

    .forgotPassword:hover {
        color: #d95f00;
        transform: translateY(-1px);
        text-decoration: underline;
    }
/*#endregion */

/*#region Duyarlı (Responsive) Başlık Boyutu */
@media screen and (min-width: 1280px) {
    .singInUpBaslik {
        font-size: 3rem;
    }
}

@media screen and (max-width: 1279px) and (min-width:821px) {
    .singInUpBaslik {
        font-size: 2.4rem;
    }
}

@media screen and (max-width: 820px) and (min-width:360px) {
    .singInUpBaslik {
        font-size: 2rem;
    }
}

@media screen and (max-width: 359px) {
    .singInUpBaslik {
        font-size: 1.6rem;
    }
}
/*#endregion */
