/* _variables.scss */
/* Define brand colors */
/* Light gray background from logo */
/* Define gradients */
/* Primary red gradient */
/* Hover gradient */
/* Global body styles */
body {
  background-color: #dee0dc; /* Default light gray background */
  color: #dddddd;
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
}

/* Global link styles */
a {
  color: #c0392b;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #d65548;
  text-decoration: underline;
}

/* Shared Button Styles */
.btn {
  font-size: 1.2rem;
  padding: 14px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  width: 100%; /* Full width for consistency */
  margin-bottom: 15px; /* Spacing between buttons */
}

.btn:hover {
  transform: translateY(-3px); /* Lift effect */
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

/* Button Variants */
.btn-primary {
  background: linear-gradient(to bottom, #e74c3c, #c0392b);
  border-color: #c0392b;
}

.btn-primary:hover {
  background: linear-gradient(to bottom, #c0392b, #a93226);
}

.btn-success {
  background: #dddddd;
  color: #000000;
  border-color: #dddddd;
}

.btn-success:hover {
  background: #c4c4c4;
}

.btn-danger {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-danger:hover {
  background: black;
}

/* _variables.scss */
/* Define brand colors */
/* Light gray background from logo */
/* Define gradients */
/* Primary red gradient */
/* Hover gradient */
/* Login Page Background */
body.sessions-new {
  background: #ffffff; /* White background for the page */
  color: #333333; /* Default dark gray for text */
  font-family: "Arial", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Login form container */
body.sessions-new .page-login-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 70px); /* Adjust for the height of the navbar */
  padding: 20px;
}

/* Login form styling */
body.sessions-new .page-login {
  width: 100%;
  max-width: 400px;
  background: #dee0dc; /* Logo background color */
  padding: 20px; /* Reduced padding */
  border-radius: 10px;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.2); /* More pronounced shadow */
  border: 1px solid #cccccc; /* Subtle border */
}

/* Logo Styling */
.login-logo {
  display: block;
  margin: 0 auto 20px; /* Centered with some spacing below */
  max-width: 180px; /* Larger logo size */
  height: auto; /* Maintain aspect ratio */
}

/* Header text styling */
body.sessions-new .page-login h2 {
  font-size: 1.8rem; /* Slightly smaller font */
  font-weight: 700;
  margin-bottom: 10px; /* Reduced spacing below header */
  color: #c0392b; /* Primary red for the header */
  text-align: center;
}

/* Form labels */
body.sessions-new .form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333333; /* Dark gray for labels */
  margin-bottom: 5px;
}

/* Form input styling */
body.sessions-new .form-control {
  background: #f9f9f9; /* Slightly distinct background for inputs */
  color: #333333; /* Dark text for readability */
  border: 1px solid #cccccc;
  padding: 12px 15px;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 10px; /* Reduced spacing between inputs */
}

body.sessions-new .form-control:focus {
  border-color: #c0392b;
  box-shadow: 0 0 5px rgba(192, 57, 43, 0.3);
}

/* Button styling */
body.sessions-new .btn-primary {
  font-size: 1.3rem;
  padding: 12px 20px; /* Slightly reduced padding */
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  background: linear-gradient(to bottom, #e74c3c, #c0392b); /* Slight gradient */
  box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1); /* Softer shadow */
  color: #ffffff;
  width: 100%; /* Stretch to full width */
  margin-bottom: 15px; /* Add more spacing below the button */
}

/* Links styling */
body.sessions-new .page-login .text-center a {
  color: #c0392b; /* Red for action links */
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin: 5px 0; /* Add spacing between links */
}

body.sessions-new .page-login .text-center a:hover {
  text-decoration: underline;
}
