/* css/login.css */

body {
  background-color: #FFFFFF;
  color: #222222;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  line-height: 1.6;
}

.container {
  max-width: 400px;
  margin: 50px auto;
  padding: 30px 20px;
  border: 1px solid #D1E4FF;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(20, 70, 130, 0.1);
  background-color: #f9faff;
}

h1 {
  color: #3A6EA5;
  text-align: center;
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: #1FB6FF;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 18px;
  border: 1px solid #D1E4FF;
  border-radius: 4px;
  font-size: 1em;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="date"]:focus {
  border-color: #1FB6FF;
  outline: none;
}

button {
  width: 100%;
  padding: 12px;
  background-color: #3A6EA5;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button a:hover,
button a:focus {
  background-color: #1FB6FF;
  outline: none;
}

p {
  text-align: center;
  color: #555555;
  margin-top: 15px;
  font-size: 0.95em;
}

a {
  color: #3A6EA5;
  text-decoration: none;
  font-weight: bold;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.social-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 2px solid #3A6EA5;
  border-radius: 4px;
  font-weight: bold;
  color: #3A6EA5;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
}

.social-login-button:hover,
.social-login-button:focus {
  background-color: #3A6EA5;
  color: white;
  outline: none;
}

.social-login-button img {
  margin-right: 8px;
  height: 24px;
}
