/* OcchiWalk Website Styles */

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  background: linear-gradient(135deg, #0558b4 0%, #0a7bd4 100%);
  color: #222;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: 40px auto 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(44,62,80,0.08);
  padding: 32px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 18px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
  background: #f0f4f8;
}

h1 {
  font-size: 2.1em;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #0558b4;
  text-align: center;
}

.tagline {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 28px;
  text-align: center;
}

.app-description {
  font-size: 1em;
  color: #666;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.5;
}

.download-section {
  width: 100%;
  margin-bottom: 24px;
  text-align: center;
}

.download-btn {
  display: inline-block;
  background: #0558b4;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  margin: 8px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.download-btn:hover {
  background: #044a9a;
}

.download-btn.coming-soon {
  background: #ccc;
  cursor: not-allowed;
}

.contact-btn {
  display: inline-block;
  background: #3498db;
  color: #fff;
  font-size: 1.1em;
  font-weight: 600;
  padding: 12px 32px;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(44,62,80,0.10);
}

.contact-btn:hover {
  background: #217dbb;
}

.support-links {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.support-link {
  display: inline-block;
  color: #0558b4;
  text-decoration: none;
  font-size: 0.9em;
  margin: 0 10px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.support-link:hover {
  background: #f0f4f8;
}

.privacy-section {
  width: 100%;
  margin-top: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  padding: 18px 14px;
  font-size: 0.98em;
  color: #444;
}

.privacy-section h2 {
  font-size: 1.1em;
  color: #2c3e50;
  margin-top: 0;
}

.features {
  width: 100%;
  margin-bottom: 24px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.95em;
  color: #555;
}

.feature-icon {
  width: 20px;
  height: 20px;
  margin-right: 12px;
  background: #0558b4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: bold;
}

/* Password Reset Page Specific Styles */
.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  transition: border-color 0.3s;
}

input:focus {
  outline: none;
  border-color: #0558b4;
}

button {
  width: 100%;
  padding: 14px;
  background: #0558b4;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #044a9a;
}

button:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.message {
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
}

.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.loading {
  display: none;
  margin-left: 10px;
}

.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #0558b4;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
  display: inline-block;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.back-link {
  margin-top: 20px;
}

.back-link a {
  color: #0558b4;
  text-decoration: none;
}

.back-link a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 600px) {
  .container {
    padding: 18px 6px 18px 6px;
    margin: 20px auto 0 auto;
  }
  .logo {
    width: 90px;
    height: 90px;
  }
} 