* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

:root {
    --primary-color: #121fdf;
    --secondary-color: #3d4af7;
    --free-color: #008000;
    --text-dark: #364264;
    --text-light: #fff;
    --gray-text: #6f7e88;
    --bg-color: #0e2332;
    --menu-bg: #0f2738;
    --text-main: #ffffff;
    --text-dim: #8895ae;
    --accent-blue: #5c7cfa;
    --hover-bg: #15354d;
    --border-radius: 5px;
}

body {
    background-color: #ffffff;
}

.container {
    display: flex;
    height: 100vh;
    width: 100%;
}

/* Lewa sekcja */
.image-section {
    flex: 1;
    overflow: hidden;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Prawa sekcja */
.form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.form-wrapper {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.logo {
    margin-bottom: 20px;
}

.logo img {
    width: 140px;
}

h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

/* Pola formularza */
.input-group {
    text-align: left;
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 14px;
    color: var(--gray-text);
    margin-bottom: 8px;
}

input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus {
    border-color: var(--primary-color);
}

.password-wrapper {
    position: relative;
}

.password-wrapper i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-text);
    cursor: pointer;
}

/* Przycisk */
.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

/* Tekst pod przyciskiem */
.login-link {
    margin-top: 25px;
    font-size: 14px;
    color: var(--gray-text);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

/* Ikony społecznościowe */
.social-icons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons i {
    font-size: 20px;
    color: var(--text-dim);
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--gray-text);
}

/* Responsywność dla telefonów */
@media (max-width: 900px) {
    .image-section {
        display: none;
    }
}