body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5; /* Light grey background */
    color: #333;
}

.landing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Max width for the entire section */
    padding: 20px;
    box-sizing: border-box;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.logo-section {
    flex: 1; /* Takes up one part of the space */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-width: 300px; /* Minimum width before wrapping */
}

.syrona-logo {
    max-width: 250px; /* Adjust logo size as needed */
    height: auto;
}

.login-section {
    flex: 1; /* Takes up one part of the space */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    min-width: 300px; /* Minimum width before wrapping */
}

.login-box {
    background-color: #2c3e50; /* Darker blue/grey background */
    padding: 40px;
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    width: 100%;
    max-width: 400px; /* Max width for the login form */
    color: #ecf0f1; /* Light text color for contrast */
    position: relative; /* For version info positioning */
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 1.1em;
    color: #bdc3c7; /* Lighter grey for labels */
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group select {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #34495e; /* Slightly lighter dark for input fields */
    color: #ecf0f1;
    font-size: 1em;
    box-sizing: border-box; /* Include padding in width */
    -webkit-appearance: none; /* Remove default select styling on WebKit browsers */
    -moz-appearance: none; /* Remove default select styling on Firefox */
    appearance: none; /* Remove default select styling */
}

.form-group select {
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23bdc3c7%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13%205.1L146.2%20205.9%2018.4%2074.5a17.6%2017.6%200%200%200-25.3%2023.7l137.9%20137.9a17.6%2017.6%200%200%200%2025.3%200l137.9-137.9a17.6%2017.6%200%200%200-12.9-23.7z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 1em auto;
}


button[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: #3498db; /* Blue submit button */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #2980b9; /* Darker blue on hover */
}

.version-info {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 0.8em;
    color: #27ae60; /* Green for version number */
}

.footer-info {
    margin-top: 40px;
    font-size: 0.9em;
    color: #666;
}

.alert {
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 0.9em;
    text-align: center;
}

.error-message {
    background-color: #e74c3c;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .landing-container {
        flex-direction: column;
    }
    .logo-section, .login-section {
        min-width: unset; /* Remove min-width on small screens */
        width: 100%;
    }
    .login-box {
        max-width: 90%; /* Make login box take more width on small screens */
    }
}