/* Ogólny reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Kontener rejestracji */
.register-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

/* Lewa sekcja */
.register-left {
    flex: 1;
    background-color: white;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.register-left h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.register-left label {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.register-left input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.register-left input:focus {
    border-color: #6A264B;
    outline: none;
}

.btn {
    background-color: #6A264B;
    color: white;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #6A264B;
}

.register-links {
    text-align: center;
    margin-top: 1rem;
}

.register-links a {
    color: #6A264B;
    text-decoration: none;
}

.register-links a:hover {
    text-decoration: underline;
}

/* Prawa sekcja */
.register-right {
    flex: 1;
    background: url('photos\front-view-woman-using-sign-language-scaled.jpg') no-repeat center center/cover;
    object-fit: cover;
}

.success {
    background-color: #eaf4ea;
    color: #2d7a2d;
    padding: 1rem;
    border: 1px solid #2d7a2d;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.error {
    background-color: #f8d7da;
    color: #842029;
    padding: 1rem;
    border: 1px solid #f5c2c7;
    border-radius: 5px;
    margin-bottom: 1rem;
}
