/* app/static/css/login.css */

/* 
   Use whatever exact color codes you have for Achieva branding. 
   Below are placeholder hex codes that you can adjust to match 
   your design perfectly. 
*/
:root {
    --achieva-teal: #005961;   /* Example teal color */
    --achieva-purple: #781F67; /* Example purple color */
    --input-background: #CEE5E7; /* Light teal for input fields */
  }

  
/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #333;
  min-height: 100vh;
}

/* Header container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.header-left img.achieva-logo {
  height: 40px;
}

/* Right side of header */
.header-right {
  display: flex;
  align-items: center;
}

/* "Achieva Bucks" text styling */
.achieva-bucks-text {
  font-weight: bold;
  font-size: 1.2rem;
  color: var(--achieva-teal);
  margin-right: 1rem;
}

/* Sign in button in header */
.sign-in-button {
  background-color: var(--achieva-purple);
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
}

/* Main section styling */
.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

/* Page title */
.main-content h1 {
  font-size: 1.5rem;
  color: var(--achieva-teal);
  margin-bottom: 2rem;
  font-weight: normal;
}

/* Form container */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Input fields */
.input-field {
  width: 300px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: var(--input-background);
  font-size: 1rem;
}

/* Log in button in the form */
.login-button {
  background-color: var(--achieva-purple);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: bold;
  width: 16rem;
  margin-top: 0.5rem;
}

/* SSO Section */
.sso-section {
  margin-top: 2rem;
  text-align: center;
}

.sso-text {
  color: #666;
  margin-bottom: 1rem;
}

.sso-button {
  display: inline-block;
  background-color: var(--achieva-purple);
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.sso-button:hover {
  background-color: #5a1750;
}

.welcome-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #333;
}

.info-section {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  border-radius: 8px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.info-section p {
  color: #333;
  line-height: 1.6;
  margin: 0;
}

.info-section a {
  color: #0066cc;
  text-decoration: none;
  font-weight: 500;
}

.info-section a:hover {
  text-decoration: underline;
}