/*
 * 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.
 */
/* active_admin_landing.css.scss */

/* Body styling for dark mode */
body {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  /* Container for centering the landing content */
  .landing-page-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
  }
  
  /* Heading styling */
  .landing-page-container h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  /* Styling for the Google sign-in button */
  .google-signin-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #ecf0f1;
    background-color: #1abc9c;
    border: 1px solid #16a085;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect for the button */
  .google-signin-button:hover {
    background-color: #16a085;
  }
  
  /* Google icon styling */
  .google-signin-button img {
    height: 16px;
    width: 16px;
    margin-right: 8px;
  }
  