/* Import fonts and icons */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Body styles for centering */
body {
  margin: 0;
  background-color: #1e1e2f;
  color: #cdd6f4;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Container with nice card style */
.container {
  background-color: #313244;
  border-radius: 12px;
  padding: 40px 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.6);
}

/* Logo image styling */
.logo {
  width: 120px;
  margin-bottom: 24px;
}

/* Headings */
h1 {
  font-weight: 600;
  margin-bottom: 24px;
  color: #f5e0dc;
}

/* Buttons and button-like links */
button, a.button {
  background-color: #89b4fa;
  border: none;
  color: #1e1e2f;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 14px 0;
  width: 100%;
  border-radius: 8px;
  
  /* Flex for icon and text */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  
  cursor: pointer;
  text-decoration: none;
  
  /* Smooth color transition */
  transition: background-color 0.3s ease;
  
  /* Allow text to wrap */
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  line-height: 1.4;
}

/* Hover effect */
button:hover, a.button:hover {
  background-color: #5174e0;
}

/* Paragraph styling */
p {
  margin: 16px 0;
  color: #bac2de;
  line-height: 1.5;
}

/* Links */
a.link {
  color: #94e2d5;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

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