@font-face {
  font-family: 'Poppins';
  src: url("../fonts/Poppins/Poppins-Regular.ttf");
} 

@font-face {
  font-family: 'Poppins-Bold';
  src: url("../fonts/Poppins/Poppins-Medium.ttf");
} 

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f8fafc;
  color:#0f172a;
}

a{
  text-decoration:none;
}

img{
  width:100%;
  display:block;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

.pointer { cursor: pointer; }

.font-10 { font-size: 10px !important; }
.font-12 { font-size: 12px !important; }
.font-14 { font-size: 14px !important; }
.font-16 { font-size: 16px !important; }
.font-18 { font-size: 18px !important; }
.font-20 { font-size: 20px !important; }
.font-28 { font-size: 28px !important; }
.font-36 { font-size: 36px !important; }

/* ================= NAVBAR ================= */

.navbar{
  background:#fff;
  padding:10px 0;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:22px;
}

.logo-icon{
  width:38px;
  height:38px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:red;
  font-size:26px;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu a{
  color:#334155;
  font-size:15px;
}

.language{
  display:flex;
  align-items:center;
  gap:6px;
}

/* ================= HERO ================= */

.hero{
  padding:70px 0;
  background:
    radial-gradient(circle at top left,#dbeafe 0%,#f8fafc 60%);
}

.hero-wrapper{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.hero-content h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:24px;
  font-weight:700;
}

.hero-content p{
  font-size:16px;
  line-height:1.5;
  color:#475569;
  margin-bottom:36px;
  max-width:520px;
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#2563eb;
  color:#fff;
  padding:16px 28px;
  border-radius:50px;
  font-weight:600;
  box-shadow:0 12px 25px rgba(37,99,235,0.25);
  transition:0.3s;
}

.btn-primary:hover{
  transform:translateY(-2px);
}

/* ================= VIDEO CARD ================= */

.video-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.video-card iframe{
  height:360px;
  object-fit:cover;
}

.play-button{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:90px;
  height:90px;
  background:rgba(255,255,255,0.92);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  color:#0f172a;
}

.video-caption{
  position:absolute;
  left:16px;
  bottom:16px;
  background:rgba(15,23,42,0.7);
  color:#fff;
  padding:10px 14px;
  border-radius:12px;
  display:flex;
  align-items:center;
  gap:12px;
  font-size:14px;
}

.duration{
  background:#111827;
  padding:4px 8px;
  border-radius:6px;
}

/* ================= FEATURES ================= */

.features{
  padding:90px 0;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.feature-card{
  background:#fff;
  border-radius:22px;
  padding:40px 30px;
  text-align:center;
  box-shadow:0 10px 30px rgba(15,23,42,0.05);
}

.feature-icon{
  width:110px;
  height:110px;
  border-radius:50%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:50px;
  margin-bottom:25px;
}

.blue{
  background:#dbeafe;
  color:#2563eb;
}

.green{
  background:#dcfce7;
  color:#16a34a;
}

.purple{
  background:#ede9fe;
  color:#7c3aed;
}

.feature-card h3{
  font-size:28px;
  margin-bottom:14px;
}

.underline{
  width:70px;
  height:4px;
  border-radius:20px;
  margin:0 auto 22px;
}

.blue-line{
  background:#2563eb;
}

.green-line{
  background:#16a34a;
}

.purple-line{
  background:#7c3aed;
}

.feature-card p{
  color:#475569;
  line-height:1.8;
  font-size:14px;
}

/* ================= FOOTER ================= */

.footer{
  background:#f1f5f9;
  padding-top:60px;
}

.footer-wrapper{
  display:flex;
  justify-content:space-between;
  gap:60px;
  padding-bottom:50px;
}

.footer-brand{
  max-width:320px;
}

.footer-brand p{
  margin-top:20px;
  line-height:1.8;
  color:#475569;
}

.footer-links{
  display:flex;
  gap:80px;
}

.footer-column{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.footer-column h4{
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:8px;
}

.footer-column a{
  color:#475569;
}

.copyright{
  border-top:1px solid #dbe2ea;
  text-align:center;
  padding:24px;
  color:#64748b;
  font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .hero-wrapper{
    grid-template-columns:1fr;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }

  .footer-wrapper{
    flex-direction:column;
  }

  .footer-links{
    flex-wrap:wrap;
    gap:40px;
  }

  .hero-content h1{
    font-size:42px;
  }
}

@media(max-width:768px){

  .nav-wrapper{
    flex-direction:column;
    gap:20px;
  }

  .nav-menu{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding:50px 0;
  }

  .hero-content h1{
    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
  }

  .video-card img{
    height:260px;
  }

  .play-button{
    width:70px;
    height:70px;
    font-size:32px;
  }

  .feature-card{
    padding:32px 24px;
  }
}


/* =========================================
   ABOUT PAGE
========================================= */

.active-nav{
  color:#2563eb !important;
  position:relative;
  font-weight:600;
}

.active-nav::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:2px;
  background:#2563eb;
}

/* ================= HERO ================= */

.about-hero{
  padding:40px 0 0;
}

.about-hero-wrapper{
  background:
  linear-gradient(
    90deg,
    #eef4fb 0%,
    #f8fafc 100%
  );

  border-radius:20px 20px 0 0;

  overflow:hidden;

  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
}

.about-content{
  padding:60px;
}

.about-content h1{
  font-size:48px;
  line-height:1.1;
  margin-bottom:24px;
}

.about-content p{
  color:#475569;
  line-height:1.5;
  font-size:16px;
  max-width:600px;
}

.about-image {
  width: 600px;
  overflow:hidden;
}

.about-image img{
  width:100%;
  display:block;

  -webkit-mask-image:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,1) 60%,
      rgba(0,0,0,0) 100%
    );

  mask-image:
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,1) 60%,
      rgba(0,0,0,0) 100%
    );
}

/* ================= PEDAGOGICAL ================= */

.pedagogical{
  background:#fff;
  padding:40px 0;
}

.pedagogical-box{
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.pedagogical-icon{
  width:160px;
  display:flex;
  justify-content:center;
}

.big-icon{
  width:120px;
  height:120px;
  border-radius:50%;
  background:#dbeafe;
  color:#2563eb;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:60px;
}

.pedagogical-content{
  flex:1;
}

.pedagogical-content h2{
  font-size:30px;
  margin-bottom:16px;
}

.pedagogical-content p{
  color:#475569;
  line-height:1.5;
  margin-bottom:28px;
}

.pedagogical-points{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.point{
  display:flex;
  align-items:center;
  gap:10px;
  font-size: 14px;

  color:#334155;
  font-weight:500;
}

.point i{
  color:#2563eb;
}

/* ================= TYPES ================= */

.types-section{
  padding:20px 0 60px;
}

.section-header{
  margin-bottom:30px;
}

.section-header h2{
  font-size:30px;
  margin-bottom:10px;
}

.section-header p{
  color:#64748b;
  line-height:1.8;
}

.types-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.type-card{
  background:#fff;
  border-radius:18px;
  padding:24px;

  display:flex;
  gap:18px;

  box-shadow:0 10px 25px rgba(15,23,42,0.05);
}

.type-icon{
  width:40px;
  height:40px;
  min-width:40px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:25px;
}

.yellow{
  background:#fef3c7;
  color:#ca8a04;
}

.type-card h3{
  font-size:18px;
  margin-bottom:10px;
}

.type-card p{
  color:#64748b;
  line-height:1.5;
  font-size:14px;
}

/* ================= HIGHLIGHT ================= */

.highlight-section{
  padding-bottom:60px;
}

.highlight-box{
  background:#f8fafc;
  border-radius:20px;
  padding:35px;

  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:25px;
}

.highlight-item{
  display:flex;
  gap:20px;
}

.highlight-icon{
  width:60px;
  height:60px;
  min-width:60px;

  border-radius:50%;

  background:#dbeafe;
  color:#2563eb;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;
}

.highlight-item h3{
  margin-bottom:10px;
  font-size:18px;
}

.highlight-item p{
  color:#64748b;
  line-height:1.5;
  font-size: 14px;
}

.highlight-small{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;

  gap:12px;

  border-left:1px solid #e2e8f0;

  padding-left:20px;
}

.highlight-small i{
  font-size:34px;
  color:#2563eb;
}

.highlight-small span{
  font-size:12px;
  color:#475569;
  line-height:1.5;
}

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

.vertical-line {
  height: 70px;
  width: 5px;
  border-left: 1px solid red;
}

/* ================= SIMPLE FOOTER ================= */

.simple-footer{
  background:#fff;
  border-top:1px solid #e2e8f0;
}

.simple-footer-wrapper{
  padding:20px 0;

  display:flex;
  justify-content:space-between;
  align-items:center;
}

.simple-links{
  display:flex;
  gap:24px;
}

.simple-links a{
  color:#64748b;
  font-size:14px;
}

.simple-copy{
  color:#64748b;
  font-size:14px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1100px){

  .types-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .highlight-box{
    grid-template-columns:1fr 1fr;
  }

  .highlight-item{
    grid-column:1 / -1;
  }
}

@media(max-width:768px){

  .about-hero-wrapper{
    grid-template-columns:1fr;
  }

  .about-content{
    padding:40px 30px;
  }

  .about-content h1{
    font-size:38px;
  }

  .pedagogical-box{
    flex-direction:column;
  }

  .pedagogical-icon{
    width:100%;
  }

  .types-grid{
    grid-template-columns:1fr;
  }

  .highlight-box{
    grid-template-columns:1fr;
  }

  .highlight-small{
    border-left:none;
    border-top:1px solid #e2e8f0;

    padding-left:0;
    padding-top:20px;
  }

  .simple-footer-wrapper{
    flex-direction:column;
    gap:14px;
    text-align:center;
  }
}


/* =========================================
   AUTH PAGE
========================================= */

.auth-page{
  display:grid;
  grid-template-columns:420px 1fr;

  background:#f8fbff;
}

/* ================= LEFT ================= */

.auth-left{
  background:
  linear-gradient(
    180deg,
    #f8fbff 0%,
    #eef5ff 100%
  );

  padding:10px 40px;

  display:flex;
  flex-direction:column;
}

.auth-navbar{
  margin-bottom:80px;
}

.auth-left-content{
  flex:1;

  display:flex;
  flex-direction:column;
  justify-content:center;
}

.auth-left-content h1{
  font-size:32px;
  line-height:1.1;
  margin-bottom:10px;
  color:#0f172a;
}

.auth-left-content p{
  font-size:16px;
  line-height:1.5;
  color:#64748b;
  max-width:320px;
}

/* ================= ILLUSTRATION ================= */

.auth-illustration{
  margin-top:80px;
}

.lab-card{
  position:relative;

  width:320px;
  height:220px;

  background:#edf4ff;

  border-radius:120px;

  display:flex;
  align-items:center;
  justify-content:center;
}

.lab-monitor{
  position:relative;

  width:180px;
  height:120px;

  background:#1e3a8a;

  border-radius:14px;

  border:10px solid #0f172a;
}

.lab-monitor::before{
  content:'';

  position:absolute;
  left:50%;
  bottom:-22px;

  transform:translateX(-50%);

  width:120px;
  height:12px;

  background:#64748b;

  border-radius:20px;
}

.chart-line{
  position:absolute;
  left:20px;
  top:55px;

  width:120px;
  height:3px;

  background:#3b82f6;

  transform:rotate(-10deg);

  border-radius:10px;
}

.lab-flask{
  position:absolute;
  bottom:15px;

  width:45px;
  height:60px;

  border:4px solid #2563eb;
  border-radius:0 0 12px 12px;
}

.flask-left{
  left:20px;
}

.flask-right{
  right:20px;
}

.lab-stand{
  position:absolute;
  left:10px;
  bottom:20px;

  width:8px;
  height:90px;

  background:#64748b;
}

/* ================= RIGHT ================= */

.auth-right{
  padding:10px 50px;
}

.top-login{
  text-align:right;
  margin-bottom:20px;
  font-size: 14px;

  color:#64748b;
}

.top-login a{
  color:#2563eb;
  font-weight:600;
}

.auth-card{
  background:#fff;

  border-radius:24px;

  padding:20px 40px;

  box-shadow:0 15px 40px rgba(15,23,42,0.06);
}

.auth-header{
  margin-bottom:20px;
}

.auth-header h2{
  font-size:32px;
  margin-bottom:10px;
}

.auth-header p{
  color:#64748b;
  font-size:14px;
}

/* ================= CONTENT ================= */

.auth-content{
  display:grid;
  grid-template-columns:1fr 340px;
  gap:40px;
}

/* ================= FORM ================= */

.form-group{
  margin-bottom:10px;
}

.form-group label{
  display:block;

  margin-bottom:2px;
  font-size: 14px;
  font-weight:600;
  color:#334155;
}

.form-group input,
.form-group select{
  width:100%;
  height:45px;

  border:1px solid #dbe2ea;
  border-radius:5px;
  padding:0 18px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.form-group input:focus,
.form-group select:focus{
  border-color:#2563eb;
}

.password-input{
  position:relative;
}

.password-input i{
  position:absolute;
  right:18px;
  top:50%;

  transform:translateY(-50%);

  color:#94a3b8;
}

/* ================= ROLE ================= */

.auth-role{
  border-left:1px solid #e2e8f0;
  padding-left:40px;
}

.auth-role h3{
  margin-bottom:24px;
  font-size:22px;
}

.role-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;

  margin-bottom:24px;
}

.role-card {
  position:relative;
  border:2px solid #e2e8f0;
  border-radius:18px;
  padding:10px 20px;
  text-align:center;
  transition:0.3s;
  cursor:pointer;
}

.role-card:hover,
.role-card.active-role {
  border-color:#2563eb;
  background:#f8fbff;
}

.role-card.active-role .role-check {
  opacity: 1;
}

.role-card:hover .role-icon,
.role-card.active-role .role-icon { color: #2563eb; }

.role-check{
  position:absolute;
  top:12px;
  right:12px;

  width:24px;
  height:24px;

  background:#2563eb;
  color:#fff;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:14px;
  opacity: 0;
}

.role-icon {
  font-size:64px;
  color:lightgray;
  transition:0.3s;
}

.role-card h4{
  font-size:18px;
  line-height:1.3;
  margin-bottom:12px;
}

.role-card p{
  color:#64748b;
  line-height:1.5;
  font-size: 14px;
}

.role-info{
  background:#eef5ff;

  border-radius:16px;

  padding:20px;

  display:flex;
  align-items:flex-start;
  gap:14px;
}

.role-info i{
  color:#2563eb;
  font-size:22px;
}

.role-info p{
  line-height:1.5;
  color:#475569;
  font-size: 14px;
}

/* ================= FOOTER ================= */

.auth-footer{
  margin-top:15px;
  text-align:center;
}

.btn-auth{
  width:100%;
  /*max-width:420px;*/

  height:45px;

  border:none;
  border-radius:5px;

  background:#2563eb;
  color:#fff;

  font-size:16px;
  font-weight:600;

  cursor:pointer;

  margin-bottom:10px;

  box-shadow:0 10px 30px rgba(37,99,235,0.25);
}

.auth-footer p{
  color:#64748b;
  font-size: 14px;
}

.auth-footer a{
  color:#2563eb;
  font-weight:600;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

  .auth-content{
    grid-template-columns:1fr;
  }

  .auth-role{
    border-left:none;
    border-top:1px solid #e2e8f0;

    padding-left:0;
    padding-top:40px;
  }
}

@media(max-width:992px){

  .auth-page{
    grid-template-columns:1fr;
  }

  .auth-left{
    display:none;
  }
}

@media(max-width:768px){

  .auth-right{
    padding:20px;
  }

  .auth-card{
    padding:28px;
  }

  .auth-header h2{
    font-size:34px;
  }

  .role-grid{
    grid-template-columns:1fr;
  }

  .role-card h4{
    font-size:22px;
  }
}


.select2-container .select2-selection--single {
  border: 1px solid #E3E3E3 !important;
  height: 45px !important; 
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 45px !important;
  font-size: 14px !important;
  padding-left: 18px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 45px;
  width: 45px;
  right: 5px;
}

.error-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-size: 12px;
  color: red;
  padding: 10px;
  border: 1px solid lightpink;
  border-radius: 5px;
  background-color: lightpink;
  margin-bottom: 10px;
}

.title-case {
  text-transform: capitalize;
}




/* =========================================
   LOGIN PAGE
========================================= */

.login-page{
  min-height:92vh;

  background:
  linear-gradient(
    180deg,
    #f8fbff 0%,
    #eef5ff 100%
  );

  overflow:hidden;
  position:relative;
}

/* ================= NAVBAR ================= */

.login-navbar{
  height:90px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  padding:0 50px;

  background:#fff;
}

.login-menu{
  display:flex;
  align-items:center;
  gap:40px;
}

.login-menu a{
  color:#0f172a;
  font-weight:500;
}

.login-menu .language{
  display:flex;
  align-items:center;
  gap:8px;
}

/* ================= WRAPPER ================= */

.login-wrapper{
  position:relative;

  min-height:calc(100vh - 160px);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:40px;
}

/* ================= CARD ================= */

.login-card{
  width:100%;
  max-width:560px;

  background:#fff;

  border-radius:24px;

  padding:50px;

  box-shadow:0 20px 50px rgba(15,23,42,0.08);

  position:relative;
  z-index:10;
}

.login-header{
  text-align:center;
  margin-bottom:40px;
}

.login-header h1{
  font-size:32px;
  margin-bottom:10px;

  color:#0f172a;
}

.login-header p{
  color:#64748b;
  font-size:14px;
}

/* ================= FORM ================= */

/*.login-form .form-group{
  margin-bottom:26px;
}
*/
.login-form label{
  display:block;

  margin-bottom:2px;

  font-weight:600;
  color:#0f172a;
}

.input-wrapper{
  position:relative;
}

.input-wrapper input{
  width:100%;
  height:45px;
  border:1px solid #dbe2ea;
  border-radius:5px;
  padding:0 52px;
  font-size:14px;
  outline:none;
  transition:0.3s;
}

.input-wrapper input:focus{
  border-color:#2563eb;
  box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.input-wrapper > i{
  position:absolute;
  left:18px;
  top:50%;

  transform:translateY(-50%);

  color:#64748b;
  font-size:20px;
}

.toggle-password{
  position:absolute;
  right:16px;
  top:50%;

  transform:translateY(-50%);

  background:none;
  border:none;

  cursor:pointer;

  color:#64748b;
  font-size:20px;
}

/* ================= FORGOT ================= */

.forgot-row{
  display:flex;
  justify-content:flex-end;

  margin-top:-6px;
  margin-bottom:24px;
}

.forgot-row a{
  color:#2563eb;
  font-weight:500;
  font-size: 14px;
}

/* ================= BUTTON ================= */

.btn-login{
  width:100%;
  height:45px;

  border:none;
  border-radius:14px;

  background:#2563eb;
  color:#fff;

  font-size:18px;
  font-weight:600;

  cursor:pointer;

  transition:0.3s;

  box-shadow:0 10px 30px rgba(37,99,235,0.25);
}

.btn-auth:hover,
.btn-login:hover{
  transform:translateY(-2px);
}

/* ================= ERROR ================= */

.login-error{
  margin-top:0px;

  display:flex;
  align-items:center;
  gap:10px;

  color:#ef4444;
  font-size:14px;
}

.login-error i{
  font-size:14px;
}

/* ================= FOOTER ================= */

.login-footer{
  text-align:center;
  padding-bottom:0px;
}

.login-footer p{
  color:#64748b;
  font-size:14px;
}

.login-footer a{
  color:#2563eb;
  font-weight:600;
}

/* ================= DECOR ================= */

.login-decor{
  position:absolute;
  inset:0;

  pointer-events:none;
}

.floating-icon{
  position:absolute;

  color:#c7d8ff;
  opacity:0.55;
}

.flask-icon{
  left:80px;
  top:180px;

  font-size:90px;
}

.molecule-icon{
  left:140px;
  top:320px;

  font-size:70px;
}

.graph-icon{
  right:180px;
  top:140px;

  font-size:100px;
}

.microscope-icon{
  right:120px;
  bottom:80px;

  font-size:130px;
}

/* ================= DOTS ================= */

.dot-pattern{
  position:absolute;

  width:90px;
  height:90px;

  background-image:radial-gradient(
    #c7d8ff 2px,
    transparent 2px
  );

  background-size:16px 16px;
}

.pattern-left{
  left:60px;
  bottom:120px;
}

.pattern-right{
  right:80px;
  top:260px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){

  .graph-icon,
  .microscope-icon,
  .flask-icon,
  .molecule-icon,
  .dot-pattern{
    display:none;
  }

  .login-navbar{
    padding:0 24px;
  }

  .login-menu{
    gap:20px;
  }
}

@media(max-width:768px){

  .login-navbar{
    height:auto;

    flex-direction:column;
    gap:20px;

    padding:20px;
  }

  .login-card{
    padding:36px 26px;
  }

  .login-header h1{
    font-size:38px;
  }

  .login-header p{
    font-size:16px;
  }

  .login-menu{
    flex-wrap:wrap;
    justify-content:center;
  }

  .login-wrapper{
    padding:20px;
  }
}

.sw-button-ok { 
  width: 200px !important;
  height: 30px !important;
  padding: 2px 2rem !important; 
  font-size: 12px !important;
  font-weight: normal !important;
  color: white !important;
  border:none !important;
  border-radius: 5px !important;
  background-color: #5fbeaa !important;
}

.sw-button-cancel { 
  width: 200px !important;
  height: 30px !important;
  padding: 2px 2rem !important; 
  font-size: 12px !important;
  font-weight: normal !important;
  color: white !important;
  border:none !important;
  border-radius: 5px !important;
  background-color: #f00 !important;
}


.sw-popup { padding: 15px 0px !important; }
.sw-header { background-color:red !important; }
.sw-title { font-size:16px !important; }
.sw-html { font-size:14px !important; padding: 0px !important; }

.loading-wrapper {
  height: 100vh;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
}

.loading-wrapper .loading {
  width: 250px;
  background-color: white;
  border-radius: 5px;
  border: 1px solid lightgrey;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow:0 10px 30px rgba(15,23,42,0.05);
}




























