/* styles.css */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;


    font-size: 1.5rem;
    font-weight: bold;
    color: #2a7de1;
}

.logo-img {
    height: 75px;
    border-radius: 50%;
    width: auto;
}

body {
  background: #f5f7fa;
  color: #333;
  min-height: 100vh;
}

.navbar {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-buttons .btn {
  text-decoration: none;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  background: #2a7de1;
  color: white;
  transition: 0.3s;
}

.auth-buttons .btn:hover {
  background: #155fb8;
}

.auth-buttons .btn-outline {
  background: white;
  color: #2a7de1;
  border: 1px solid #2a7de1;
}

.auth-buttons .btn-outline:hover {
  background: #e6f0ff;
}

.main-content {
  text-align: center;
  padding: 5rem 2rem;
}

.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.main-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-btn {
  padding: 0.75rem 2rem;
  background: #2a7de1;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #155fb8;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

