/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Card Container for Forms */
form {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h2 { color: #333; margin-bottom: 25px; }

/* Input Styling */
input[type="text"], input[type="email"], input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
    font-size: 16px;
}

/* Button Styling */
button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover { background-color: #0056b3; }

/* Links & Messages */
p { font-size: 14px; color: #666; }
a { color: #007bff; text-decoration: none; }
a:hover { text-decoration: underline; }
.message { color: #28a745; margin-bottom: 15px; font-weight: bold; }
.error { color: #dc3545; margin-bottom: 15px; font-weight: bold; }

/* Dashboard Specific Styles */
.dashboard-container {
    background: white;
    width: 90%;
    max-width: 1000px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    align-self: flex-start;
    margin-top: 50px;
}
