body {
    font-family: Arial, sans-serif;
    background: #f0f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: white;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: 350px;
}

h2 {
    text-align: center;
    color: #1e3a8a;
}

input {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

input:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 5px #1e3a8a;
}

button {
    width: 100%;
    padding: 10px;
    background: #1e3a8a;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #2563eb;
}

.api-message {
    margin-top: 15px;
    padding: 12px;
    background-color: #f3f4f6;  /* light gray */
    border-left: 5px solid #1e3a8a;  /* blue accent */
    border-radius: 5px;
    overflow-x: auto;
}
.api-message pre {
    margin: 0;
    font-family: Consolas, monospace;
    font-size: 14px;
    color: #1e3a8a;
    white-space: pre-wrap; /* wrap long lines */
}

.error {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

a {
    display: block;
    text-align: center;
    margin-top: 15px;
    color: #1e3a8a;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
.logout {
            position: absolute;
            top: 20px;
            right: 30px;
            text-decoration: none;
            color: white;
            background: #1e3a8a;
            padding: 10px 20px;
            border-radius: 30px;
            backdrop-filter: blur(8px);
            transition: 0.3s ease;
            font-size: 14px;
        }

        .logout:hover {
            background: #1e3a8a;
            transform: translateY(-2px);
        }