body {
    margin: 0;
    padding: 40px 0;
    background: #f0f2f5;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.register-container {
    background: white;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 90%;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

form input[type="text"],
form input[type="password"],
form input[type="email"],
form input[type="tel"],
form select {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    background-color: white;
}


form input[type="submit"] {
    padding: 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

form input[type="submit"]:hover {
    background-color: #1e7e34;
}

p {
    margin-top: 15px;
    text-align: center;
}

.google-register {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.komunikat {
    background: #ffe5e5;
    color: #d32f2f;
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: bold;
    text-align: center;
    border: 1px solid #d32f2f;
}
