﻿
/* Ortalama */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

/* Kart yapısı */
.login-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

    /* Başlık */
    .login-card h2 {
        text-align: center;
        margin-bottom: 30px;
        color: #333;
    }

/* Form alanı */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
        color: #444;
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 15px;
        transition: border 0.2s;
    }

        .form-group input:focus {
            border-color: #007bff;
            outline: none;
        }

/* Buton */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

    button:hover {
        background-color: #0056b3;
    }

/* Hata mesajı */
.error-message {
    color: red;
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
}
