﻿/* -------------------------------------------------------------------------
* TCLT_Login.css
* Login css file for ClientCode=TCLT
*
*/
/* -----------------------------------------------------------------------------------------------
* _TCLT_Fonts.css
*
* 041422 DustinP: Created for housing TCLT Font SCSS
* ----------------------------------------------------------------------------------------------- */
.txtLato, .txtLato400, .txtLato300 {
  font-family: Lato, sans-serif, Arial !important;
}
.txtLato300 {
  font-weight: 300;
}
.txtLato400 {
  font-weight: 400;
}

.txtAparey, .txtAparey400, .txtAparey300 {
  font-family: Arapey, sans-serif, Arial !important;
}
.txtAparey300 {
  font-weight: 300;
}
.txtAparey400 {
  font-weight: 400;
}

.txtOpenSans300 {
  font-family: "Open Sans", sans-serif !important;
}

.txtAparey, .txtAparey300, .txtAparey400 {
  font-family: Arapey, sans-serif, Arial !important;
  font-weight: normal;
}

.fwNormal {
  font-weight: normal;
}

.fwMedium {
  font-weight: 500;
}

.fwBold {
  font-weight: bold;
}

/* Global TCLT Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #F5F1EA;
  color: #1a1a1a;
  line-height: 1.6;
  min-height: 100vh;
}

#LoginContent {
  max-width: 1200px;
  width: 100%;
  padding: 0;
  margin: auto;
}

.login-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-image-panel {
  width: auto;
  position: relative;
  flex: none;
}
.login-image-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}
.login-image-panel .logo-container {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
}
.login-image-panel .logo-container .logo-text {
  font-family: "Great Vibes", cursive;
  font-size: 64px;
  color: #ffffff;
  margin-bottom: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.login-image-panel .logo-container .logo-tagline {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.login-form-panel {
  flex: 0 0 50%;
  background-color: #F5F1EA;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.login-form-container {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
}
.login-form-container h1, .login-form-container h3 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 50px;
  line-height: 1.2;
}
.login-form-container .btn-primary {
  max-width: unset !important;
}

.form-group {
  margin-bottom: 30px;
}
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-family: "Montserrat", sans-serif;
}
.form-group .input-wrapper {
  position: relative;
}
.form-group .input-wrapper input[type=text],
.form-group .input-wrapper input[type=password] {
  width: 100%;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #333333;
  background-color: #ffffff;
  color: #1a1a1a;
  font-family: "Montserrat", sans-serif;
  transition: all 0.3s ease;
}
.form-group .input-wrapper input[type=text]::placeholder,
.form-group .input-wrapper input[type=password]::placeholder {
  color: #999999;
  font-weight: 300;
}
.form-group .input-wrapper input[type=text]:focus,
.form-group .input-wrapper input[type=password]:focus {
  outline: none;
  border-color: #8B6F47;
  box-shadow: 0 0 0 2px rgba(139, 111, 71, 0.1);
}
.form-group .input-wrapper .password-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}
.form-group .input-wrapper .password-toggle:hover {
  color: #8B6F47;
}
.form-group .input-wrapper .password-toggle i {
  font-size: 18px;
}

.btn-primary {
  width: 100%;
  max-width: 220px;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid #333333;
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: none;
  margin-top: 10px;
  float: right;
}
.btn-primary:hover {
  background-color: #2C2C2C;
  color: #ffffff;
  border-color: #2C2C2C;
}
.btn-primary:active {
  transform: translateY(1px);
}

.login-links {
  clear: both;
}
.login-links .forgot-password {
  display: block;
  text-align: right;
  margin-bottom: 30px;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  cursor: pointer;
  padding: 0;
  float: right;
}
.login-links .forgot-password:hover {
  color: #666666;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-links .link-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-links .link-group .link-label {
  font-size: 14px;
  color: #1a1a1a;
}
.footer-links .link-group a {
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-bottom: 1px solid #1a1a1a;
}
.footer-links .link-group a:hover {
  text-decoration: none;
  color: #666666;
}

.message-box {
  padding: 15px 20px;
  margin-bottom: 25px;
  border-radius: 0;
  font-size: 14px;
}
.message-box.error {
  background-color: #fef2f2;
  border: 1px solid #dc2626;
  color: #dc2626;
}
.message-box.success {
  background-color: #f0fdf4;
  border: 1px solid #16a34a;
  color: #16a34a;
}
.message-box.info {
  background-color: #eff6ff;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.identity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 20px;
  margin: 30px 0;
}
.identity-grid .identity-card {
  aspect-ratio: 1;
  border: 2px solid #333333;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 15px;
  text-align: center;
}
.identity-grid .identity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.identity-grid .identity-card i {
  font-size: 48px;
  margin-bottom: 10px;
}
.identity-grid .identity-card .identity-name {
  font-size: 14px;
  font-weight: 500;
  word-wrap: break-word;
}
.identity-grid .identity-card.new-identity {
  background-color: #8B6F47;
  color: #ffffff;
  border-color: #8B6F47;
}
.identity-grid .identity-card.new-identity i {
  font-size: 64px;
}

.RadWindow {
  border: none !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 1200px) {
  .login-image-panel {
    flex: 0 0 45%;
  }
  .login-form-panel {
    flex: 0 0 55%;
    padding: 40px;
  }
}
@media (max-width: 968px) {
  .login-wrapper {
    flex-direction: column;
  }
  .login-image-panel {
    flex: none;
    min-height: unset;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
  }
  .login-image-panel img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  .login-image-panel .logo-container {
    top: 40px;
  }
  .login-image-panel .logo-container .logo-text {
    font-size: 48px;
  }
  .login-image-panel .logo-container .logo-tagline {
    font-size: 12px;
  }
  .login-form-panel {
    flex: 1;
    padding: 40px 30px;
  }
  .login-form-container {
    max-width: 100%;
  }
  .login-form-container h1, .login-form-container h3 {
    font-size: 32px;
    margin-bottom: 35px;
  }
  .btn-primary {
    width: 100%;
    max-width: 100%;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .login-form-panel {
    padding: 30px 20px;
  }
  .login-form-container h1, .login-form-container h3 {
    font-size: 28px;
  }
  .form-group {
    margin-bottom: 25px;
  }
  .form-group label {
    font-size: 14px;
  }
  .form-group .input-wrapper input {
    padding: 14px 16px;
    font-size: 15px;
  }
}
.panel-hidden {
  display: none;
}

.text-center {
  text-align: center;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.clearfix::after {
  content: "";
  display: table;
  clear: both;
}
