@charset "utf-8";
/* CSS Document */

/* Basic Input Styling */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    box-sizing: border-box; /* Include padding in element's total width/height */
    font-size: 16px;
    transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Button Styling */
button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

.modern-select {
  appearance: none; /* Removes default browser styling */
  -webkit-appearance: none; /* For Webkit browsers */
  -moz-appearance: none; /* For Firefox */
  background-color: #f5f5f5; /* Light background */
  border: 1px solid #ccc; /* Subtle border */
  border-radius: 4px; /* Rounded corners */
  padding: 10px 15px; /* Padding for text and custom arrow */
  font-family: Arial, sans-serif; /* Modern font */
  font-size: 16px;
  color: #333;
  cursor: pointer;
  width: 100%; /* Ensure it fills the wrapper */
  box-sizing: border-box; /* Include padding in width */
}

.modern-button {
  /* Basic Styling */
  display: inline-block; /* Allows padding and alignment */
  padding: 12px 24px; /* Adjusts button size */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern font */
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #ffffff; /* White text */
  background-color: #007bff; /* Primary blue color */
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer; /* Indicates interactivity */

  /* Shadows and Transitions for Modern Look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* Smooth transitions for hover effects */
}

.modern-button:hover {
  background-color: #0056b3; /* Darker blue on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.modern-button:active {
  background-color: #004085; /* Even darker blue on click */
  transform: translateY(0); /* Returns to original position */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Reduced shadow on click */
}

/* Optional: Disabled State */
.modern-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.form-container {
    background-color: #ffffff; /* White background */
    border-radius: 12px; /* Softly rounded corners */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    padding: 20px; /* Ample internal spacing */
    max-width: 600px; /* Maximum width for readability */
    margin: 60px auto; /* Center the form horizontally with top/bottom margin */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Modern, readable font */
    color: #333333; /* Darker text for contrast */
}

.form-title {
  font-family: 'Segoe UI', sans-serif; /* Modern, readable font */
  font-size: 2.5em; /* Large and prominent */
  font-weight: 600; /* Semi-bold for emphasis */
  color: #333; /* Dark gray for good contrast */
  text-align: center; /* Centered for visual balance */
  margin-bottom: 40px; /* Ample space below the title */
  position: relative; /* For potential pseudo-elements or underlines */
  padding-bottom: 10px; /* Space for a subtle underline effect */
}

.form-title::after {
  content: ''; /* Create a pseudo-element for an underline */
  display: block;
  width: 60px; /* Short, modern underline */
  height: 4px;
  background-color: #007bff; /* Accent color for the underline */
  margin: 10px auto 0; /* Center the underline and space it from the text */
  border-radius: 2px; /* Slightly rounded corners for the underline */
}
