body {
    font-family: Arial, sans-serif;
    background-color: white;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
}

input {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

.flashes {
    list-style-type: none;
    padding: 0;
}

.success {
    color: green;
}

.error {
    color: red;
}
.message-box {
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    text-decoration: none; /* Remove underline */
    border-radius: 5px; /* Rounded corners */
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    transition: background-color 0.3s ease; /* Smooth transition */
}

.back-button:hover {
    background-color: #45a049; /* Darker green on hover */
}
.logout-button {
    background-color: #f44336; /* Red */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.logout-button:hover {
    background-color: #d32f2f; /* Darker red */
}
img {
    display: block;
    margin: 0 auto; /* Center the image */
    width: 150px;   /* Adjust the size */
    height: auto;
}
/* Container for both buttons */
.buttons-container {
    display: flex;           /* Use flexbox to align the buttons */
    justify-content: space-between; /* Space out the buttons on the left and right */
    width: 100%;             /* Make the container span the full width of the page */
    padding: 10px;           /* Optional padding for some space around the buttons */
}

/* Style for the Logout button */
.logout-button {
    background-color: #f44336; /* Red */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Style for the Renew License button */
.renew-button {
    background-color: #4CAF50; /* Green */
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}

/* Add hover effects */
.logout-button:hover {
    background-color: #d32f2f; /* Darker red */
}

.renew-button:hover {
    background-color: #388E3C; /* Darker green */
}
