/* auth.css - Logixs Authentication Styles */
:root {
  --auth-glass: rgba(255, 255, 255, 0.95);
  --auth-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(11, 59, 94, 0.8), rgba(11, 59, 94, 0.8)), 
              url('../assets/img/bg/bg-1.jpg') no-repeat center center;
  background-size: cover;
  padding: 20px;
}

.auth-card {
  background: var(--auth-glass);
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--auth-shadow);
  transform: translateY(0);
  transition: all 0.3s ease;
}

.auth-card:hover {
  transform: translateY(-5px);
}

.auth-header {
  text-align: center;
  margin-bottom: 30px;
}

.auth-header img {
  max-width: 150px;
  margin-bottom: 20px;
}

.auth-header h2 {
  font-size: 28px;
  color: var(--theme-color1);
  font-weight: 700;
  margin-bottom: 10px;
}

.auth-header p {
  color: var(--theme-color4);
  font-size: 14px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--theme-color1);
  font-size: 14px;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 42px;
  color: var(--theme-color4);
  transition: all 0.3s ease;
}

.form-control {
  padding: 12px 15px 12px 45px !important;
  border: 1px solid #e1e5e8;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--theme-color2);
  box-shadow: 0 0 0 3px rgba(0, 0, 128, 0.1);
}

.form-control:focus + .input-icon {
  color: var(--theme-color2);
}

.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: var(--theme-color4);
}

.auth-footer a {
  color: var(--theme-color2);
  font-weight: 700;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}

/* Utils */
.btn-auth {
  width: 100%;
  padding: 14px !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  margin-top: 10px;
}

.remember-me {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 13px;
}

.remember-me input {
  margin-right: 5px;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e1e5e8;
    background: #fff;
    color: var(--theme-color1);
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--bg-theme-color3);
    color: var(--theme-color2);
    transform: scale(1.1);
}
