@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
}

.navbar {
  width: 100%;
  background: #011627;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 80px;
  box-sizing: border-box;
}

.navbar-logo {
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 60px;
}

.login-btn {
  background: #B91372;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: none;
  transition: background 0.2s;
  margin-top: 0;
  cursor: pointer;
}

.login-btn:hover,
.login-btn:focus {
  background: #B91372;
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 80px;
}

.description {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(44, 62, 80, 0.10);
  max-width: 540px;
  padding: 5px 30px 22px 30px;
  text-align: center;
  font-size: 1.05rem;
  color: #222;
  margin: 0 auto;
  margin-top: 10px;
}

.main-content h1 {
  text-align: center;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

