/* Normalize.css - Including only relevant sections */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: #f4f7fb;
  color: #333;
}

/* Flexbox-based grid system */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #6a2eda, rgb(126, 76, 221), rgb(0, 152, 254));
  padding: 60px 20px;
  color: white;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 30px;
}

/* Container */
.container {
  text-align: center;
  padding: 20px;
}

p {
  font-size: 1.1em;
  color: #666;
  margin: 20px 0;
}

/* Input Field and Button Styling */
input[type="text"] {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 300px;
  font-size: 1em;
  transition: box-shadow 0.3s ease;
  margin-bottom: 15px;
}

input[type="text"]:focus {
  box-shadow: 0 0 10px rgba(126, 76, 221, 0.5);
  border-color: rgb(126, 76, 221);
}

button {
  background-color: #6a2eda;
  color: white;
  padding: 12px 24px;
  font-size: 1.2em;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
  background-color: rgb(0, 152, 254);
  box-shadow: 0 4px 20px rgba(0, 152, 254, 0.3);
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.9em;
  color: #aaa;
  padding: 20px;
  background-color: #f9f9f9;
  border-top: 1px solid #e7e7e7;
  position: fixed;
  width: 100%;
  bottom: 0;
}

.alert {
  padding: 15px;
  margin-bottom: 0px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-success {
  color: #155724;
  background-color: #4ecf6c;
  border-color: #28a745;
  border: 1px solid #28a745;
  font-size: 1.2em;  /* Slightly larger font */
  text-align: center;  /* Center the text */

}

.alert-danger {
  color: #721c24;
  background-color: #e88f97;
  border-color: #c14955;
  border: 1px solid #c14955;
  font-size: 1.2em;  /* Slightly larger font */
  text-align: center;  /* Center the text */
}

