/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns:50% 50%;
  height: 100vh;
  background-color: #f4f4f4;
}
.left-panel {
  padding: 20px;
  background-color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.right-panel {
  padding: 20px;
  background-color: #e0e0e0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.logo{
  padding-bottom: 50px;
}
.links {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}
.links a:hover {
  background-color: #555;
}
.search-container{
  width: 100%;
}
.search{
  padding: 5px;
  margin-left: 22%;
  width: 50%;
}
.btn-submit{
  padding: 5px;

  background: LawnGreen;
}
.description {
  display: flex;
  align-items: center;
  justify-content: start;
  color: white;
}
.clock{
  font-size: 3em;
  margin: 20px 0;
}
form {
  margin-bottom: 20px;
}
