body {
    background-color: #fef3e2;
    font-family: Arial, sans-serif;
}

.signup-box {
    background-color: #dba56f;
    width: 400px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 1.5rem;
    color: #000;
    font-weight: bold;
    letter-spacing: 2px;
}

h2 {
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #333;
}

a {
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5; 
    border: 1px solid #dcdcdc; 
    border-radius: 50px; 
    padding: 10px 20px; 
    text-decoration: none; 
    font-family: Arial, sans-serif; 
    font-size: 16px;
    color: #555; 
    transition: background-color 0.3s ease; 
  }
  
  .google-signin-btn img {
    width: 24px; 
    height: 24px;
    margin-right: 10px; 
  }
  
  .google-signin-btn:hover {
    background-color: #e0e0e0; 
  }

  .error_message{
    color: red;
    font-size: 0.75rem;;
    display: none;
  }