
/*============ FONTS ============*/
@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/cabinet-grotesk');

/*  
    font-family: "Playfair Display", serif;
    font-family: "DM Sans", serif;
    font-family: 'Cabinet Grotesk', sans-serif;
*/


/*============ VARIABLES ============*/
:root{
  
  --white: #FFFFFF;
  --black: #000000;
  --gray: #666666;

  --primary: #617388;
  --secondary: #1C6BFF;
  --tertiary: #D8232A;
  --quaternary: #FBBF00;

  --bs-success: #198754;
  --bs-success-bg-subtle: #051b11;
  --bs-success-border-subtle: #0f5132;

  --bs-danger: #dc3545;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-danger-border-subtle: #842029;

  --bs-warning: #ffc107;
  --bs-warning-bg-subtle: #332701;
  --bs-warning-border-subtle: #997404;

  --bs-info: #0dcaf0;
  --bs-info-bg-subtle: #032830;
  --bs-info-border-subtle: #087990;

  --fw-100: 100;
  --fw-200: 200;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
  --fw-900: 900;

  --fs-12: 12px;
  --fs-14: 14px;
  --fs-16: 16px;
  --fs-18: 18px;
  --fs-20: 20px;
  --fs-22: 22px;
  --fs-24: 24px;
  --fs-26: 26px;
  --fs-28: 28px;
  --fs-30: 30px;
  --fs-32: 32px;
  --fs-34: 34px;
  --fs-36: 36px;
  --fs-38: 38px;
  --fs-40: 40px;
  --fs-42: 42px;
  --fs-44: 44px;
  --fs-46: 46px;
  --fs-48: 48px;
  --fs-50: 50px;
  --fs-52: 52px;
  --fs-54: 54px;
  --fs-56: 56px;
  --fs-58: 58px;
  --fs-60: 60px;
  --fs-96: 96px;

  --xxs: 5px;
  --xs: 10px;
  --s: 15px;
  --xxmd: 20px;
  --xmd: 25px;
  --md: 30px;
  --lg: 40px;
  --x-lg: 60px;
  --xx-lg: 80px;
  --xxx-lg: 100px;

  --font-1: 'Cabinet Grotesk', sans-serif;
  --font-2: 'Cabinet Grotesk', sans-serif;

}

/*============ GENERAL START ============*/
*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-transition: background-color 0.4s ease-in-out;
    -moz-transition: background-color 0.4s ease-in-out;
    transition: background-color 0.4s ease-in-out;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

body {
    margin: 0;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    text-align: var(--bs-body-text-align);
    background-color: var(--bs-body-bg);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    font-variant-numeric: normal;
    -moz-transition: padding-top 0.5s ease;
    -o-transition: padding-top 0.5s ease;
    -webkit-transition: padding-top 0.5s ease;
    transition: padding-top 0.5s ease;
    position: relative;
    background: var(--white);
    /* overflow: hidden; */
}

body {
  height: 100vh;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body::before{
  content: "";
  background-color:rgba(0, 0, 0, .5);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-1);
}

span,
p,
label,
input,
input::placeholder,
select,
button,
a {
    font-family: var(--font-1);
}

button:focus{
  outline: 0!important;
  box-shadow: 0 0 0 0 rgba(13,110,253,0)!important;
}

.btn-principal{
    width: 100%;
    max-width: fit-content;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 22px;
    border: solid 1px var(--primary);
    background: var(--primary);
    font-family: var(--font-1);
    font-size: var(--fs-16);
    font-weight: var(--fw-500);
    line-height: 100%;
    color: var(--white);
    font-style: normal;
    letter-spacing: 0;
    text-decoration: none;
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: .5s all ease-in-out;
    transition: all .5s ease-in-out;
}

.btn-principal:hover, .btn-principal:focus, .btn-principal:active{
  cursor: pointer;
  border: solid 1px var(--primary);
  background: var(--primary);
  color: var(--white);
  opacity: .9;
}

.btn:disabled {
    color: var(--gray);
    background: #ECEFFC;
    cursor: not-allowed;
}

/*============ GENERAL END ============*/

.alert{
  position: absolute;
  top: 12px;
  right: 12px;
  height: fit-content;
}

.container{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.container .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-form {
    width: 100%;
    min-width: 300px;
    padding: 24px;
    background: white;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 0 15px 25px rgba(0,0,0,.6);
    -moz-box-shadow: 0 15px 25px rgba(0,0,0,.6);
    box-shadow: 0 15px 25px rgba(0,0,0,.6);
    background-color: rgba(255, 255, 255, .1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-form form{
    width: 100%;
}

.logo {
    object-fit: contain;
    width: 100%;
    height: auto;
}

.title {
    margin-bottom: 0;
    text-align: center;
    color: var(--white);
    font-family: var(--font-1);
    font-weight: var(--fw-600);
    font-size: var(--fs-20);
    width: 100%;
}

#login-form button {
   width: 100%;
   max-width: 100%;
}

input.form-control {
    width: 100%;
    font-size: var(--fs-16);
    font-family: var(--font-1);
    font-weight: var(--fw-400);
    border-radius: 0;
    border: 0;
    box-shadow: none;
    border-bottom: solid 1px var(--white);
    background: transparent;
    color: var(--white)!important;
}

input.form-control{
  line-height: 48px!important;
}

input.form-control:focus, textarea.form-control:focus {
    border-bottom-color: var(--primary);
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    -moz-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0), 0 0 0px rgba(82, 168, 236, 0);
    outline: 0;
    outline: thin dotted \9;
    background: transparent;
    color: var(--white)!important;
}

input::placeholder{
    color: var(--white)!important;
    font-size: var(--fs-16);
    font-family: var(--font-1);
    font-weight: var(--fw-400);
    line-height: 18px;
    overflow: visible;
}

#icon {
    position: absolute;
    right: 2px;
    top: 13px;
    transform: translate(0, 0);
    cursor: pointer;
    color: var(--white);
}

@media(max-width: 767px){
  .alert{
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    width: 100%;
    max-width: 95%;
    z-index: 2;
  }
}