@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Galano Grotesque";
  src: url("/jakarta.faces.resource/fonts/GalanoGrotesqueRegular.otf.faces") format("opentype");
  font-weight: 400px;
  font-style: normal;
}

@font-face {
  font-family: "Galano Grotesque Medium";
  src: url("/jakarta.faces.resource/fonts/GalanoGrotesqueMedium.otf.faces") format("opentype");
  font-weight: 500px;
  font-style: normal;
}

@font-face {
  font-family: "Galano Grotesque Semi Bold";
  src: url("/jakarta.faces.resource/fonts/GalanoGrotesqueSemiBold.otf.faces")
    format("opentype");
  font-weight: 600px;
  font-style: normal;
}

@font-face {
  font-family: "Galano Grotesque Bold";
  src: url("/jakarta.faces.resource/fonts/GalanoGrotesqueBold.otf.faces") format("opentype");
  font-weight: 700px;
  font-style: normal;
}

:root {
  --font-primary: "Galano Grotesque", sans-serif;
  --font-secondary: "Galano Grotesque Medium", sans-serif;
  --font-tertiary: "Galano Grotesque Bold", sans-serif;
}

/*TELA DE RESET DE SENHA */

*{
  font-family: var(--font-primary) !important;
}

.custom-login-button.ui-button.ui-state-default {
  background: #6a1bff;
  color: #fff;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.custom-login-button.ui-button.ui-state-default:hover {
  background: #7f39fb;
}

.check-icon {
  margin-left: 2px;
  font-weight: bold;
  color: green;
}

.change-pass-text {
  font-family: "Galano Grotesque Medium", sans-serif !important;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #3d2e7f;
}

.change-pass-form-content {
  height: 569px;
  display: flex;
  flex-direction: column;
  padding: 1em;
}

.password-toggle {
  padding-right: 2rem;
}
.toggle-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}

.update-pass-button {
  background: #662dff;
  color: white !important;
  padding: 12px;
  border: none;
  border-radius: 20px !important;
  height: 40px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

.update-pass-button:hover {
  background: #723eff;
  color: white !important;
}

.update-pass-button > .ui-button-text {
  color: white !important;
  font-family: "Galano Grotesque Medium", sans-serif !important;
}

.update-pass-button:disabled,
.update-pass-button[disabled] {
  background: #e6e6e6 !important;
  color: #9d9d9d !important;
  border: none !important;
  cursor: not-allowed;
  box-shadow: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.update-pass-button:disabled > .ui-button-text {
  color: #9d9d9d !important;
}

/*TELA DE LOGIN */

.login-container {
	width: 1000px;
	height: 650px;
	display: flex;
	justify-content: space-between;
	background: url("/jakarta.faces.resource/images/side-login.png.faces") no-repeat left center;	
	background-size: auto 100%;
	border-radius: 40px;
	box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.login-side {
	width: 45%;
}

.login-form-container {
	width: 465px;
	height: 650px;
	background: white;
	border-radius: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	position: relative;
}

.login-form-content {
  	width: 286px;
	display: flex;
	gap: 15px;
	flex-direction: column;
	height: 530px;
	position: absolute;
	padding: 1em;  
}

.login-title {
	color: #662DFF;
	font-weight: 400;
	font-size: 36px;
	line-height: 44px;
	letter-spacing: 0px;
	vertical-align: middle;
	margin-top: 0;
	padding: 0;
	width: 100%;
	text-align: left;
}

.login-subtitle {
	font-family: 'Galano Grotesque Bold', sans-serif !important;
	color: #000;
	font-weight: bold;
	font-size: 22px;
	line-height: 40px;
}

/* INPUT */
.ui-inputfield {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-bottom: 1px solid #555 !important; 
    border-radius: 0 !important;
    height: 45px;
}

.ui-inputfield:focus {
    border-bottom: 2px solid #000 !important; 
}

/* FORGOT PASSWORD */
.forgot-password {
	text-align: left;
	margin-top: 5px;
	color: #662DFF !important;
	font-size: 14px !important;
	font-family: 'Galano Grotesque Medium', sans-serif !important;
	letter-spacing: 0.15px;
	display: inline-block;
	padding: 2px 0;
}

.custom-login-btn {
    background-color: #662DFF !important; 
    color: #fff !important;
    font-size: 14px !important;
    font-weight: bold !important;
    margin-top: 30px !important;
}

.login-footer {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.login-footer img {
    max-width: 120px;
    margin-top: 20px;
}

/* DIALOGS */

.custom-dialog {
    background-color: #ece6f0 !important;
    border-radius: 30px !important;
    border: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    width: 700px !important;
    max-width: 95% !important;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
    z-index: 9999 !important;
}

.custom-dialog-content {
    text-align: center;
}

.custom-dialog-icon {
    font-size: 2.5rem;
    color: #6a4ff6;
    display: block;
    margin: 0 auto 1rem auto;
    opacity: 0.9;
}

.custom-dialog-message {
    font-size: 26px;
    font-weight: 600;
    color: #1c1c1c;
    display: block;
    margin-bottom: 1rem;
}

.custom-link-button.ui-button {
    background: none !important;
    border: none !important;
    color: #6a4ff6 !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none !important;
}

body .ui-dialog .ui-dialog-content {
    padding: 0;
}

.password-sent-dialog {
	background-color: #ece6f0 !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    width: 650px !important;
    max-width: 95% !important;
    position: fixed !important;
    transform: translate(-50%, -50%) !important;
    z-index: 9999 !important;
    justify-content: center;
    height: 100%;
}

.password-sent-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}

.password-sent-email {
    font-size: 24px;
    font-weight: 600;
    color: #662DFF;
    text-align: center;
    margin-bottom: 20px;
    word-break: break-all;
    font-family: 'Galano Grotesque Semi Bold', sans-serif !important;
}

.password-sent-message {
    text-align: center;
    margin-top: 20px;
}

.multi-login-container {
    display: flex;
    flex-direction: column;
    gap: 25px;  
    width: 350px; 
    padding: 0 20px 25px 20px; 
    box-sizing: border-box; 
}

.change-pass-form-content {
	display: flex;
	gap: 15px;
	flex-direction: column;
	position: absolute;
	padding: 1em;  
}

.change-pass-subtitle {
    font-family: 'Galano Grotesque Bold', sans-serif !important;
    color: #3D2E7F;
    font-weight: bold;
    font-size: 22px;
}

.login-title--change-pass {
	font-size: 32px;
}

.login-title--change-pass {
	font-size: 32px;
}

.change-password-input {
	width: 360px;
}

/* PASSWORD TOGGLE */
.password-field-container {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.password-toggle-icon {
  font-family: 'primeicons' !important;
  font-style: normal;
  font-size: 1rem;
  color: #666;
  transition: color 0.2s ease;
  background: none;
}

.password-toggle-btn:hover .password-toggle-icon {
  color: #333;
  background: none;
}

.password-field-with-toggle {
  background-color: white !important;
  -webkit-text-security: disc;
  padding-right: 3rem !important;
}
