/* REGISTER ERROR MESSAGE */
p .invalid-feedback {
    color: red;
    list-style: none;
    margin: 0;
    padding: 0;
}


:root {
    --background: #ffffff;
    --color: #000000;
    --primary-color: #3F418D;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    box-sizing: border-box;
    font-family: "poppins";
    background: var(--background);
    color: var(--color);
    letter-spacing: 1px;
    transition: background 0.2s ease;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -ms-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
}
.site-logo {
    position: relative;
    top: 20px;
    left: 20px;
    max-width: 280px;
    
}

/* LION IMAGE 404 PAGE */
.form-container img{
    max-width: 80%;
    height: auto;
}

.login-container .register-forget button {
    background-color: var(--primary-color);
    color: white;
    display: block;
    padding: 13px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.1s ease-in-out;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

.login-container .register-forget button:hover {
    box-shadow: 0 0 10px 1px #201f22;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}

#hint_id_password a{
    color: blue;
}

/* MASCOT */
.mascot-container {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mascot-container img {
  max-width: 50%;
  height: auto;
}

/* Responsivo - no mobile, empilha */
@media (max-width: 768px) {
  .page-container {
    flex-direction: column;
  }

  .mascot-container {
    order: 2; /* garante que a imagem fique abaixo */
    margin-top: 1rem;
  }

  .form-container {
    order: 1;
    width: 100%;
  }
}

/* Mascot ends */

/* Mobile e tablet */
@media (max-width: 768px) {
    .site-logo {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        max-width: 140px;
        
    }
    .form-container{
        margin-top: 100px;
    }
}
@media (max-width: 575px) {
    .form-container{
        margin-top: 120px !important;
    }
}
.form-container #signup{
    margin-top: 300px;
}

.message {
    color: #e71cee;
}

.errorlist {
    color: #e71cee;
}

a {
    text-decoration: none;
    color: white;
}
a:hover{
    
    color: #ff0202;
}

h1 {
    font-size: 2.5rem;
}

.container {
    display: flex;
    justify-content: center;
   align-items: center;    
}

.login-container {
    position: relative;
    width: 32.2rem;
}
.form-container {
    border: 1px solid hsla(0, 0%, 65%, 0.158);
    box-shadow: 0 0 36px 1px rgba(172, 162, 162, 0.13);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 2rem;
    margin-top: -80px;
      
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.form-container .card-title {
    font-size: 25px;
    
}

/* Aplica só a inputs normais, não ao checkbox */
.login-container form input:not([type="checkbox"]) {
  display: block;
  padding: 14.5px;
  width: 100%;
  margin: 1rem;  
  color: var(--color);
  outline: none;
  background-color: #9191911f;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  font-size: 15px;
  backdrop-filter: blur(15px);
  -webkit-border-radius: 5px;
}

/* Ajuste do checkbox + label */
.form-check {
  display: flex;
  align-items: center;
  gap: 6px; /* espaço entre checkbox e label */
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.form-check-input {
  width: auto; /* tira largura de 100% */
  padding: 0;
  margin: 0;
}

.login-container form input:focus {
    box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
    animation: wobble 0.3s ease-in;
    -webkit-animation: wobble 0.3s ease-in;
}

.login-container button {
    background-color: var(--primary-color);
    color: white;
    display: block;
    padding: 13px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.1s ease-in-out;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}

.login-container button:hover {
    box-shadow: 0 0 10px 1px #6f82a6;
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}
/* registration form */
.registration-container {
    position: relative;
    width: 32.2rem;
}
.registration-container {
    border: 1px solid hsla(0, 0%, 65%, 0.158);
    box-shadow: 0 0 36px 1px rgba(172, 162, 162, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 2rem;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.registration-container form input {
    display: block;
    padding: 4.5px;
    width: 100%;
    margin: 1rem 0;
    color: var(--color);
    outline: none;
    background-color: #9191911f;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    letter-spacing: 0.8px;
    font-size: 15px;
    backdrop-filter: blur(15px);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.registration-container form input:focus {
    box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
    animation: wobble 0.3s ease-in;
    -webkit-animation: wobble 0.3s ease-in;
}
.registration-container form button {
    background-color: var(--primary-color);
    color: white;
    display: block;
    padding: 13px;
    border-radius: 5px;
    outline: none;
    font-size: 18px;
    letter-spacing: 1.5px;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.1s ease-in-out;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
}
.registration-container form button:hover {
    box-shadow: 0 0 10px 1px rgba(1, 176, 245, 0.849);
    transform: scale(1.02);
    -webkit-transform: scale(1.02);
    -moz-transform: scale(1.02);
    -ms-transform: scale(1.02);
    -o-transform: scale(1.02);
}
.registration-forget {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;    
}
.registration-forget:hover{
    color: white;
}
.message {    
    font-family: "poppins";
    color:#ee2a1c;
    margin-right: 1rem;
    z-index: 3;
}
/* circles in the form */
.circle {
    width: 8rem;
    height: 8rem;
    background: var(--primary-color);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    position: absolute;
}

.illustration {
    position: absolute;
    top: -14%;
    right: -2px;
    width: 70%;
    z-index: -1;
}

.circle-one {
    top: -80px;
    left: 0;
    z-index: -1;
    color:#A76D99;
    transform: translate(-45%, -45%);
    -webkit-transform: translate(-45%, -45%);
    -moz-transform: translate(-45%, -45%);
    -ms-transform: translate(-45%, -45%);
    -o-transform: translate(-45%, -45%);
}

.circle-two {
    bottom: 0;
    right: 0;
    z-index: -1;
    color:#3F418D;
    margin-right: 80px;
    transform: translate(45%, 45%);
    -webkit-transform: translate(45%, 45%);
    -moz-transform: translate(45%, 45%);
    -ms-transform: translate(45%, 45%);
    -o-transform: translate(45%, 45%);
}

.register-forget {
    margin: 1rem 0;
    display: flex;
    justify-content: space-between;    
}

.opacity {
    opacity: 0.6;
}

.theme-btn-container {
    position: absolute;
    left: 0;
    bottom: 2rem;
}

.theme-btn {
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.theme-btn:hover {
    width: 40px !important;
}

@keyframes wobble {
    0% {
        transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -moz-transform: scale(1.025);
        -ms-transform: scale(1.025);
        -o-transform: scale(1.025);
    }
    25% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
    75% {
        transform: scale(1.025);
        -webkit-transform: scale(1.025);
        -moz-transform: scale(1.025);
        -ms-transform: scale(1.025);
        -o-transform: scale(1.025);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
    }
}
