/* style.css */
.nav-links a, a {
    color: #fff;
}
body {
    font-family: sans-serif;
    background-color: #000;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 500px;
    margin: 40px auto;
    padding: 30px;
    background: #333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in element's total width */
}

button,
input[type="submit"] { /* Style button and submit inputs similarly */
    display: block;
    width: 100%;
    padding: 10px 15px;
    background-color: #5cb85c;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
    background-color: #4cae4c;
}

.message {
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
    text-align: center;
}

.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.text-center {
    text-align: center;
}

.text-center a {
    color: #337ab7;
    text-decoration: none;
}

.text-center a:hover {
    text-decoration: underline;
}

.dashboard-info {
    background-color: #eef;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #dde;
    margin-bottom: 20px;
}

.dashboard-info p {
    margin: 5px 0;
}

.logout-link {
     display: inline-block;
     margin-top: 20px;
     padding: 8px 15px;
     background-color: #d9534f;
     color: white;
     text-decoration: none;
     border-radius: 4px;
     transition: background-color 0.3s ease;
}

.logout-link:hover {
     background-color: #c9302c;
}