body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.container { display: flex; }
.brief { width: 30%; padding: 20px; }
.code { width: 70%; padding: 20px; }
pre { 
    background-color: #f4f4f4; 
    padding: 15px; 
    overflow: auto; /* Ensures the whole code block is visible */
}
textarea {
    width: 100%; /* Full width of the container */
    background-color: #f8f8f8;
    color: #333;
    border: 1px solid #ddd;
    font-family: monospace; /* Makes it easier to read the code */
    margin-bottom: 20px; /* Space between textareas */
    padding: 10px;
    box-sizing: border-box; /* Include padding and border in the element's width and height */
}
form {
    width: 100%; /* Ensure the form takes up the entire width */
}
.download-link {
    display: block; /* Makes the link take a whole line */
    margin-top: 20px; /* Space above the download link */
}



h2 {
    color: #333;
    text-align: center;
}

form {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    color: white;
    background-color: #007bff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.flash {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
}

.flash.success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.flash.error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

header {
  background-color: #ffffff; /* Background color for the header */
  padding: 10px 20px; /* Padding inside the header */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  position: sticky; /* Make the header stick to the top when scrolling */
  top: 0; /* Position the sticky header at the very top */
  z-index: 1000; /* Ensure the header stays above other content */
}

header a {
  color: #007bff; /* Text color for links */
  text-decoration: none; /* Remove underline from links */
  margin-left: 15px; /* Spacing between links */
  font-weight: 600; /* Make the font a bit bolder */
}

header a:hover {
  text-decoration: underline; /* Underline link on hover for visual feedback */
}

/* Special class for the header container to help with alignment */
.header-container {
  display: flex;
  justify-content: flex-end; /* Align links to the right */
  align-items: center; /* Center items vertically */
}

/* Utility class to add a margin to the header container */
.header-container-margin {
  margin-right: 20px; /* Right margin for spacing */
}
