﻿body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.login-container,
.reset-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  max-width: 1000px;
  width: 90%;
  display: flex;
  margin: 20px;
}

.login-left,
.reset-left {
  background: #f8f9fa;
  padding: 60px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-right,
.reset-right {
  padding: 60px 50px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.logo-subtitle {
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
}
.feature-list li {
  color: #6c757d;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.feature-list i {
  color: #28a745;
  margin-right: 15px;
  font-size: 18px;
}

.dashboard-illustration {
  margin-top: 40px;
  text-align: center;
}
.dashboard-illustration i {
  font-size: 120px;
  color: #667eea;
  opacity: 0.3;
}

.login-title,
.reset-title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.login-subtitle,
.reset-subtitle {
  color: #6c757d;
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-label {
  font-weight: 600;
  color: #495057;
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  border: 1px solid #ced4da;
  border-radius: 8px;
  padding: 12px 45px 12px 15px;
  font-size: 15px;
  transition: all 0.3s;
}
.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #dc3545;
  cursor: pointer;
  z-index: 10;
}

.btn-login,
.btn-send {
  background: #667eea;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
  margin-top: 10px;
}
.btn-login:hover,
.btn-send:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.forgot-password,
.return-login {
  text-align: center;
  margin-top: 20px;
}
.forgot-password a,
.return-login a {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.forgot-password a:hover,
.return-login a:hover {
  color: #667eea;
}

.text-danger {
  font-size: 13px;
  margin-top: 5px;
}

.alert {
  border-radius: 8px;
  margin-bottom: 25px;
}

.confirmation-box {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 500px;
}
.confirmation-box h1 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}
.confirmation-box p {
  color: #6c757d;
  margin-bottom: 30px;
}

.confirmation-icon {
  font-size: 80px;
  color: #28a745;
  margin-bottom: 30px;
}

.btn-return {
  background: #667eea;
  color: white;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-return:hover {
  background: #5568d3;
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .login-container,
  .reset-container {
    flex-direction: column;
  }
  .login-left,
  .reset-left,
  .login-right,
  .reset-right {
    padding: 40px 30px;
  }
  .dashboard-illustration {
    display: none;
  }
  .logo-title {
    font-size: 24px;
  }
  .login-title,
  .reset-title {
    font-size: 24px;
  }
}
@media (max-width: 576px) {
  .login-container,
  .reset-container {
    width: 95%;
    margin: 10px;
  }
  .login-left,
  .reset-left,
  .login-right,
  .reset-right {
    padding: 30px 20px;
  }
  .confirmation-box {
    padding: 30px 20px;
    width: 95%;
  }
}
