﻿body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    min-height: 30vh; /*100vh;*/
    width: 400px;
    /*background: linear-gradient(135deg, #4a5bdc, #c850c0);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
}

.login-box {
    background: #fff;
    width: 350px;
    height: 240px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    overflow: hidden;
}

.login-box-inner {
    display: flex; /* login-left ve login-right yan yana */
}

/* SOL */
.login-left {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-circle {
    width: 100px;
    height: 100px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.avatar-circle img {
    width: 80px;
}

/* SAĞ */
.login-right {
    width: 60%;
    padding: 10px 15px;
}

.login-right h4 {
    margin-bottom: 10px;
    font-weight: 400;
    color: #333;
}

.input-group {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 30px;
    padding: 4px 12px;
    margin-bottom: 8px;
}

.input-group .icon {
    /*margin-right: 10px;*/
    font-size: 0px;/*12px*/
    opacity: 0.7;
}

.input-group input {
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    font-size: 12px;
}

/* BUTON */
.btn-login {
    width: 100%;
    padding: 5px;
    border: none;
    border-radius: 30px;
    background: #64c255;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    margin-top: 5px;
    transition: background 0.2s;
}

    .btn-login:hover {
        background: #52ad44;
    }

/* FORGOT */
.forgot {
    text-align: center;
    margin-top: 10px;
}

.forgot a {
    font-size: 13px;
    color: #666;
    text-decoration: none;
}

.forgot a:hover {
    text-decoration: underline;
}

/* HATA */
.login-error {
    width: 100%;
    text-align: center;    
    color:red;
    font-size:13px;
    padding: 2px 10px;
    margin-top: 0px;
    border-radius: 5px;
    box-sizing: border-box;
}
.login-error p{margin-top:0;margin-bottom:2px; overflow:clip;}
