* {
  margin: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(145deg, #f5f5f5, #ffffff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #b50024;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('../images/image4.png.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
}

.content-login {
  max-width: 400px;
  margin: 60px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-login:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.content-login h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
  color: #b50024;
}

.content-login h2 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #ff4d6e;
}

form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}
form input[type="email"] {
  margin-bottom: 20px;
}

form input[type="email"],
form input[type="password"],
form input[type="text"] {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: rgba(224,224,224,0.8);
  box-shadow: inset 4px 4px 10px rgba(190,190,190,0.6),
              inset -4px -4px 10px rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

form input:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181,0,36,0.3);
}

button[type="submit"] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(145deg, #b50024, #800019);
  border: none;
  border-radius: 12px;
  color: white;
  font-weight: bold;
  margin-top: 20px;
  font-size: 16px;
  box-shadow: 0 6px 15px rgba(181,0,36,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

button[type="submit"]:hover {
  background: linear-gradient(145deg, #ff1a4a, #b50024);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(181,0,36,0.5);
}

.captcha-container {
  margin-top: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.7);
  border-radius: 12px;
  text-align: center;
  box-shadow: inset 2px 2px 6px rgba(200,200,200,0.5),
              inset -2px -2px 6px rgba(255,255,255,0.7);
}

.captcha input {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 12px;
  border: none;
  background: rgba(224,224,224,0.8);
  box-shadow: inset 2px 2px 5px rgba(190,190,190,0.5),
              inset -2px -2px 5px rgba(255,255,255,0.7);
}

.alert-danger {
  color: #b50024;
  font-size: 15px;
  font-weight: bold;
  padding: 20px;
  background-color: rgba(255,255,255,0.7);
  border-radius: 20px;
  margin-bottom: 10px;
}

.passwordInput {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center !important;
  
}

.fa-eye, .fa-eye-slash {
  margin-left: 10px;
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .content-login {
    margin: 30px 20px;
    padding: 30px 20px;
  }
}