﻿/* TŁO */
.login-wrapper {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(243,236,237);
    padding: 40px 20px;
}

/* KARTA */
.login-card {
    background: white;
    padding: 50px 45px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 420px;
    transition: 0.3s ease;
}

    .login-card:hover {
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    }

/* TYTUŁ */
.login-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}

.login-subtitle {
    font-size: 14px;
    color: #777;
    text-align: center;
    margin-bottom: 30px;
}

/* FORMULARZ */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .form-group label {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }

.form-input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    transition: 0.2s ease;
}

    .form-input:focus {
        outline: none;
        border-color: #2c3e50;
        box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
    }

/* PRZYCISK */
.btn-login {
    margin-top: 10px;
    padding: 13px;
    border-radius: 12px;
    border: none;
    background: #2c3e50;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn-login:hover {
        background: #1a252f;
        transform: translateY(-2px);
    }

/* ERROR */
.error-box {
    background: #ffe6e6;
    color: #c0392b;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    text-align: center;
}
