/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #A3C1E0; /* Soft background color */
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styles for Kardioku and logo */
.header {
    text-align: center;
    margin-bottom: 0; /* Increased margin for better spacing */
}

.brand-logo {
    display: block; /* Make sure it's treated as a block element */
    margin-bottom: 5px; /* Adjust margin to reduce space */
    align-items: center;
    justify-content: center;
}

.brand-logo img.logo {
    width: 85px; /* Larger logo for better visibility */
    height: 75px;
}

.brand-logo h1 {
    font-size: 28px; /* Increased font size */
    color: #007bff;
    margin: 0;
}

/* Container Styles */
.container {
    max-width: 450px; /* Slightly larger container */
    width: 100%;
    padding: 30px; /* Increased padding */
    background: #D3D3D3; /* Bright background for contrast */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
}

.dashboard-image {
    width: 120px; /* Adjust the width */
    height: 110px; /* Maintain aspect ratio */
    display: block; /* Ensure it is a block element */
    margin: 5px auto; /* Center the image */
}

h2 {
    text-align: center;
    color: #333;
    margin-top: 5px; /* Reduce space above the "Login" text */
    margin-bottom: 15px; /* Adjust space below the "Login" text */
    font-size: 24px; /* Larger heading size */
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

.field-group {
    margin-bottom: 20px; /* Increased spacing */
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
    font-size: 18px; /* Larger label size */
}

form input[type="email"],
form input[type="password"],
form input[type="text"],
form input[type="tel"],
form select {
    padding: 15px; /* Increased padding */
    border: 1px solid #ccc; /* Softer border color */
    border-radius: 8px; /* Slightly larger border radius */
    font-size: 18px; /* Larger input size */
    width: 100%; /* Adjusted for padding */
    box-sizing: border-box;
}

form button {
    padding: 15px; /* Increased padding */
    border: none;
    background-color: #007bff;
    color: #fff;
    border-radius: 8px; /* Slightly larger border radius */
    font-size: 18px; /* Larger button size */
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%; /* Adjusted for padding */
    box-sizing: border-box;
}

form button:hover {
    background-color: #0056b3;
}

.error-message {
    color: #d9534f;
    margin-top: 5px;
    font-size: 16px; /* Increased font size */
}

/* Link Styles */
a {
    display: block;
    text-align: center;
    margin-top: 20px; /* Increased margin */
    color: #007bff;
    text-decoration: none;
    font-size: 18px; /* Larger link size */
}

a:hover {
    text-decoration: underline;
}
