/* static/css/styles.css */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
}

.box {
    background-color: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    max-width: 500px;
}

.logo {
    display: block;
    margin: 0 auto 1rem;
    max-width: 120px;
}

h1 {
    color: #333;
    margin-bottom: 1.5rem;
}

h2 {
    color: #333;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

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

.flash-message {
    color: red;
    margin-bottom: 1rem;
}

.dashboard-container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    width: 360px;
    text-align: center;
}

a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #007BFF;
}
a:hover {
    text-decoration: underline;
}

a.button {
    display: block;
    margin: 0.5rem 0;
    padding: 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
}

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

.success {
    color: green;
}

.error {
    color: red;
}

.token-data {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.center {
    text-align: center;
}

