/* Base styles */
:root {
  --primary-color: #3498db;
  --secondary-color: #2ecc71;
  --dark-color: #2c3e50;
  --light-color: #ecf0f1;
  --danger-color: #e74c3c;
  --success-color: #2ecc71;
  --max-width: 1200px;
}

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

body {
  font-family: 'Jost', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #191825;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: #1a75b7;
}

/* Header styles */
header {
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Navigation styles removed as requested */

/* Main content */
main {
  min-height: 70vh;
}

/* Footer styles */
footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 20px 0;
  color: #fff;
}

.footer-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 100%;
  padding-right: 10px;
}

.footer-brake {
  width: 100px;
}

.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

.footer-logo {
  margin-top: 7px;
  width: 85px;
  height: 34px;
  background-image: url("/images/playo_logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}

/* Legacy footer styles - keeping for backward compatibility */
.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #fff;
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

/* Form styles */
.form-container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

.btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  text-align: center;
}

.btn:hover {
  background-color: #1a75b7;
}

.btn-block {
  display: block;
  width: 100%;
}

/* Toast Notification Styles */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 15px 20px;
  background-color: #201f2c;
  border: 1px solid #5919ac;
  border-radius: 10px;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  max-width: 350px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  border-color: #ff5555;
}

.toast.success {
  border-color: #55ff7f;
}

.toast-message {
  margin-right: 15px;
}

.toast-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
}


/* Responsive utilities */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-container {
    gap: 1rem;
  }
  
  /* New footer responsive styles */
  .footer-wrapper {
    flex-direction: column;
  }
  
  .footer-text {
    flex-direction: column;
    text-align: center;
    margin: 10px 0;
  }
  
  .footer-brake {
    display: none;
  }
} 