@charset "utf-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.ttf");
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body,
input,
select,
textarea,
button {
  font-family: "Montserrat" !important;
}

body::-webkit-scrollbar {
  background: transparent;
  width: 5px;
}
body::-webkit-scrollbar-thumb {
  background: rgba(255, 150, 57, 1);
  border-radius: 5000px;
}
a {
  text-decoration: none;
  color: unset;
}
.button__main {
  width: max-content;
  padding: 15px 45px;
  border-radius: 500px;
  border: 1px solid transparent;
  background: rgb(0, 119, 190);
  background: linear-gradient(
    221deg,
    rgba(0, 119, 190, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.button__text {
  font-size: 16px;
  width: max-content;
  background: rgb(0, 119, 190);
  background: linear-gradient(
    221deg,
    rgba(0, 119, 190, 1) 35%,
    rgb(0, 89, 255) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
  display: flex;
  align-items: center;
  cursor: pointer;
}
/* LOGIN */
.login__container {
  width: 100%;
  height: 100vh;
  background-image: url("../img/background__blue.png");
  background-size: cover;
  background-position: center;
  padding: 25px;
  display:flex ;
  justify-content: center;
  align-items: center;
}

.login__form-cotnainer {
  width: 30%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(25px);
  padding: 75px;
  border-radius: 75px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}

.login__form-cotnainer.hmaxcont{
    height: max-content;
}
.login__form-head {
  text-align: center;
}
.login__form-head h1 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #000000;
}
.login__form-head h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
}

.login__form-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.login__input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.login__input-group label {
  font-weight: 700;
  color: #000;
}

.login__input-group .login__input {
  height: 60px;
  border-radius: 20px;
  padding-left: 15px;
  border: 1px solid transparent;
  outline: none;
  font-weight: 500;
  font-size: 18px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.25);
  color: #000;
  transition: 0.3s;
}

.login__input-group .login__input::placeholder {
  font-size: 18px;
  color: #767676;
  font-weight: 500;
}

.login__input-group .login__input:hover,
.login__input-group .login__input:focus,
.login__input-group .login__input:-webkit-autofill {
  border: 1px solid #1f98cc;
}

.login__input-group .login__input:-webkit-autofill {
  background: rgba(255, 0, 0, 0.25); /* Color de fondo rojo */
}

.msg__error {
  text-align: center;
  background: rgba(171, 0, 0, 0.1);
  border: 1px solid rgba(171, 0, 0, 1);
  color: rgba(171, 0, 0, 1);
  font-weight: 500;
  padding: 15px 10px;
  border-radius: 15px;
}

.login__input-group .button__main {
  width: 100%;
  height: 60px;
}
.login__input-group .button__text{
    margin: 10px auto;
}
.login__form-footer {
  display: flex;
  justify-content: center;
  align-items: center;
}

.login__form-footer img {
  width: 180px;
  height: auto;
}
