body {
    font-family: Arial, sans-serif;
    background-color: #c4d9ef;
    text-align: center;
}

.container {
    background-color: white;
    width: 40%;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .container {
    width: 90%;
    padding: 10px;
  }
}

h2 {
    color: #3498db;
}

label {
    display: block;
    font-weight: bold;
    color: #3498db;
    text-align: left;
    margin-top: 10px;
}

label span {
    color: red;
}

input, select {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    color: black; 
}

input::placeholder {
    color: black;
}

button {
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    width: 100%;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #3498db;
    transition: 0.4s ease-in-out;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px; 
    padding: 10px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.google-icon {
    color: red; 
    font-size: 20px;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

a {
    color: #3498db;
    text-decoration: none;
}

footer {
    font-size: 12px;
    margin-top: 20px;
}

/* Message Styling */
#messageBox {
  margin-top: 10px;
  padding: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: none;
}

#messageBox.success {
  background-color: #d4edda;
  color: #155724;
}

#messageBox.error {
  background-color: #f8d7da;
  color: #721c24;
}
.alert {
    width: 100%;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
}

.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.1);
}

.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 0 8px rgba(0, 255, 0, 0.1);
}