}@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --bg: #EEF4FF;
  --text: #0F172A;
  --text-soft: #64748B;
  --border: #DCE6F3;
  --white: #FFFFFF;
  --shadow:
    0 25px 60px rgba(39, 102, 120, .30);
  --radius-xl: 32px;
  --radius-lg: 20px;
}
/*=======================================*/

body {
/*  font-family:"Montserrat";*/
    overflow: hidden;
	position: relative;
    background-size: cover !important;
	background-image:url("../Core/images/background.svg");
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center;
}

.bg-logo {
  position: absolute;
  right: 80px;
  bottom: 50px;
  width: 420px;
  opacity: .05;
}
/* CONTAINER */
.login-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  z-index: 2;
}
/* CARD */
.login-card {
  width: 100%;
  max-width: 520px;
  background:
    rgba(255, 255, 255, .72);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 55px 48px;
  position: relative;
}
/* LOGO */
.logo-section {
  text-align: center;
  margin-bottom: 42px;
}
.logo {
  width: 220px;
  margin-bottom: 18px;
}
.logo-subtitle {
  color: var(--text-soft);
  font-size: 15px;
  letter-spacing: .08em;
}
/* WELCOME */
.welcome {
  text-align: center;
  margin-bottom: 38px;
}
.welcome h1 {
  font-size: 42px;
  color: #2b2b2b;
  margin-bottom: 12px;
	opacity:80%;
}
.welcome p {
  color: var(--text-soft);
  font-size: 16px;
}
/* FORM */
.form-group {
  margin-bottom: 22px;
}
.input-wrapper {
  position: relative;
}
.input-wrapper i {
  position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #70964c;
    font-size: 18px;
}
.input-wrapper input {
  width: 100%;
  height: 64px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background:rgba(255, 255, 255, .85);
  padding-left: 60px;
  padding-right: 60px;
  font-size: 16px;
  transition: .25s;
}
.input-wrapper input:focus {
  outline: none;
  border-color: #60A5FA;
  box-shadow:
    0 0 0 5px rgba(96, 165, 250, .12);
}

.password-toggle {
    position: absolute;
    right:10px;
    top: 50%;
    transform: translateY(50%);
    cursor: pointer;
    z-index: 10;
    color: #6c757d;
}

/* BUTTON */
.login-btn {
  width: 100%;
  height: 64px;
  border: none;
  border-radius: 35px;
  background:#70964c;
  color: white;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s;
  margin-top: 12px;
  box-shadow: 0 15px 35px rgba(37, 99, 235, .28);
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 40px rgba(37, 99, 235, .35);
}
/* COUNTRIES */
.country-section {
  margin-top: 42px;
  text-align: center;
}
.country-title {
  color:#70964c;
  font-size: 14px;
  margin-bottom: 24px;
  position: relative;
}
.country-title::before, .country-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: #DCE6F3;
}
.country-title::before {
  left: 0;
}
.country-title::after {
  right: 0;
}
.country-grid {
  display: flex;
  justify-content: center;
  margin-bottom:40px;
  gap: 26px;
}
.country-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: .2s;
}
.country-item:hover {
  transform: translateY(-4px);
}
.flag {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow:
    0 10px 25px rgba(15, 23, 42, .08);
}
.country-item span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
}
/* FOOTER */
.footer {
  margin-top: 44px;
  text-align: center;
}
.footer-security {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #64748B;
  margin-bottom: 16px;
}
.footer-copy {
  color: #94A3B8;
  font-size: 13px;
}
/* RESPONSIVE */
@media(max-width:768px) {
  body {
    overflow: auto;
  }
  .bg-map, .bg-logo {
    display: none;
  }
  .login-card {
    padding: 40px 28px;
  }
  .welcome h1 {
    font-size: 34px;
  }
  .logo {
    width: 180px;
  }
  .country-grid {
    gap: 18px;
  }
  .flag {
    width: 52px;
    height: 52px;
  }
}
@media(max-width:480px) {
  .login-wrapper {
    padding: 18px;
  }
  .login-card {
    border-radius: 26px;
    padding: 34px 22px;
  }
  .welcome h1 {
    font-size: 28px;
  }
  .input-wrapper input {
    height: 58px;
    font-size: 15px;
  }
  .login-btn {
    height: 58px;
    font-size: 16px;
  }
  .country-grid {
    flex-wrap: wrap;
  }
}