@charset "UTF-8";
/*
Theme Name: miniFs
Theme URI: https://furkansenturk.com
Author: Furkan Senturk
Author URI: https://furkansenturk.com
Description: Login Page
Version: 1
*/
*,

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

html,
body {
    width: 100%;
    height: 100%;
}

body {
    width: 100%;
    height: 100%;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    background: #07080a;
    color: #adbac7;
}

a {
    color: #58a6ff;
    text-decoration: none;
}

#FurkanSenturk {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
}

#giris {
    width: 100%;
    max-width: 280px;
}

#logo {
    font-size: 32px;
    line-height: 32px;
    text-align: center;
    font-weight: bold;
    padding-bottom: 20px;
}

#logo a {
    color: #adbac7;
    background: -webkit-linear-gradient(160deg, #0b66c3 0%, #0bc39b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: rgba(0, 0, 0, 0);
    -webkit-box-decoration-break: clone;
}

.kutu {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.girisAlan {
    margin-top: 4px;
    margin-bottom: 16px;
    position: relative;
}

.input {
    position: relative;
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #fff;
    letter-spacing: .2px;
    background: #141516;
    border: 1px solid #202122;
    border-radius: 8px;
    outline: none;
    transition: color .3s ease, border .3s ease;
}
.input:hover{
    border-color: #4f4f50;
}
.input:focus{
    border-color: #727374;
}

.input:is(:-webkit-autofill, :autofill)  {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px white inset;
} 

.btn {
    position: relative;
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    border: none;
    color: #2f3031;
    background: #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .5), 0 0 14px 0 hsla(0, 0%, 100%, .19), inset 0 -1px .4px 0 rgba(0, 0, 0, .2), inset 0 1px .4px 0 #fff;
}

.btn:hover {
    background-color: #fff;
    box-shadow: inset 0 -1px .4px 0 rgba(0, 0, 0, .2), inset 0 1px .4px 0 #fff, 0 0 0 2px rgba(0, 0, 0, .5), 0 0 14px 0 hsla(0, 0%, 100%, .19);
}

#bildirim .basarili {
    color:#fff;
    background: #347d39;
    padding: 10px;
    font-size: 12px;
    margin: 10px 0;
    border: 1px solid #44884a;
    border-radius: 8px;
}

#bildirim .hata {
    color:#fff;
    background: #7d3434;
    padding: 10px;
    font-size: 12px;
    margin-bottom: 10px;
    border: 1px solid #884444;
    border-radius: 8px;
}