/* Vispārējā atiestatīšana */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Ķermeņa stils */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: linear-gradient(135deg, #6c63ff, #4e54c8);
    color: #333;
    font-size: 16px;
}

/* Konteinera stils */
.container {
    display: flex;
    max-width: 800px;
    width: 100%;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-in-out;
}

/* Animācija parādīšanai */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Kreisā puse - Forma */
.signup-section {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.signup-section form {
    display: flex;
    flex-direction: column;
}

/* Divu kolonnu izkārtojums noteiktiem laukiem */
.form-group-inline {
    display: flex;
    gap: 20px;
}

.form-group-inline .form-group {
    flex: 1;
}

.signup-section label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.signup-section input[type="text"],
.signup-section input[type="email"],
.signup-section input[type="password"],
.signup-section select {
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.signup-section input[type="text"]:focus,
.signup-section input[type="email"]:focus,
.signup-section input[type="password"]:focus,
.signup-section select:focus {
    border-color: #6c63ff;
    background-color: #fff;
}

.signup-section button {
    padding: 15px;
    background-color: #6c63ff;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

.signup-section button:hover {
    background-color: #5a54d6;
}

.signup-section button.secondary {
    background-color: #ddd;
    color: #333;
}

.signup-section button.secondary:hover {
    background-color: #ccc;
}

/* Labā puse - Ilustrācija */
.illustration-section {
    flex: 1;
    background: #f3f4f6;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-section img {
    max-width: 100%;
    height: auto;
}

/* Responsīvais dizains */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        max-width: 95%;
    }

    .illustration-section {
        display: none;
    }

    /* Formas grupas izvieto vertikāli mazākos ekrānos */
    .form-group-inline {
        flex-direction: column;
    }
}

/* Kļūdu ziņojumu stils */
.error-message {
    color: red;
    font-size: 0.9rem;
    margin-top: -15px;
    margin-bottom: 10px;
}