/* == Global Styles ==  */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f6f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

/* == Container ==*/
.container {
  text-align: center;
  background-color: #ffffff;
  padding: 2rem 3rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 100%;
}

/* == Logo/Loader == */

/* Serves as both a loading spinner and the everest logo image*/
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-animated-image-container {
    width: 80px; 
    margin-top: 20px;
    margin-bottom: -10px;
    display: block;
  }
  
.logo-text img {
  width: 100px;
  margin-bottom: 1.5rem;
}

/* == Heading == */
h1 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1rem;
}

/* == Signup Form == */
.signup-form {
  display: flex;
  flex-direction: column;
}

.signup-form input {
  padding: 0.8rem;
  margin: 0.5rem 0;
  border: 1px solid #cccccc;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.signup-form input:focus {
  border-color: #3a7ea1;
  outline: none;
}

/* == Form Button == */
.signup-form button {
  background-color: #3a7ea1;
  color: #ffffff;
  padding: 0.8rem;
  margin-top: 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.signup-form button:hover {
  background-color: #2d5f7c;
}

/* == Flash Messages == */
.flash-messages {
  margin: 1rem 0;
}

.flash-message {
  padding: 0.8rem;
  border-radius: 5px;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.flash-message.success {
  background-color: #28a745;
}

.flash-message.warning {
  background-color: #e39734;
}

.flash-message.error {
  background-color: #d9534f;
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .container {
      padding: 1.5rem 2rem;
    }
  
    #everest-loader {
      width: 60px; 
  }
  
    .logo-text img {
      width: 80px;
    }
  }
