/* 🧾 Formularz rejestracji – styl spójny z VoiceStream */
.auth-form {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #1c1c2b;
    min-height: 80vh;
    color: #fff;
}

.auth-form .container {
    background: #232334;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.auth-form h1 {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: center;
    color: #00d9ff;
}

.auth-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-form input {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #444;
    background: #2a2a3d;
    color: #fff;
    border-radius: 10px;
}

.auth-form button {
    background-color: #00d9ff;
    color: #000;
    font-weight: bold;
    padding: 12px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.auth-form button:hover {
    background-color: #00c4e2;
}

.auth-form .errors,
.auth-form .info,
.auth-form .success {
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
}

.auth-form .errors {
    background-color: #6c1e1e;
    color: #fff;
}

.auth-form .info {
    background-color: #1e3d6c;
    color: #fff;
}

.auth-form .success {
    background-color: #1e6c3f;
    color: #fff;
}

.auth-form p {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

.auth-form a {
    color: #00d9ff;
    text-decoration: none;
}

.auth-form a:hover {
    text-decoration: underline;
}

/* 🌐 Styl pola wyboru języka z flagami */
.select-with-flag select {
    width: 100%;
    padding: 12px 15px;
    background-color: #2a2a3d;
    color: #ffffff;
    border: 1px solid #444;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Segoe UI', sans-serif;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23fff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
}

.select-with-flag {
    position: relative;
    margin-bottom: 15px;
}