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

:root {
  --primary-cyan: #00B8D4;
  --primary-purple: #6A4C93;
  --dark-text: #2C3E50;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --gradient-start: #3B82C8;
  --gradient-middle: #5B6CAE;
  --gradient-end: #00B8D4;
  --bg-light: #F5F5F0;
  --text-dark: #2C3E50;
  --text-light: #FFFFFF;
  --input-border: #D1D5DB;
}

body {
  font-family: "Roboto", "Poppins", sans-serif;
  background: linear-gradient(135deg, #F8F9FA 0%, #E8EEF2 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1400px;
}

.home-container {
  padding: 50px 40px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

/* Left Content */
.left-content {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.logo {
  margin-bottom: 40px;
}
.logo img {
  width: 100%;
  max-width: 400px;
}

h1 {
  font-size: 2.5rem;
  color: var(--dark-text);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}

a {
  text-decoration: none;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--dark-text);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 30px;
}

.description {
  font-size: 1rem;
  color: #5A6C7D;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 500px;
}

.button-group {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
}

button {
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", "Poppins", sans-serif;
  border: none;
}

.btn-signup {
  background: var(--primary-purple);
  color: white;
  box-shadow: 0 4px 15px rgba(106, 76, 147, 0.3);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", "Poppins", sans-serif;
  border: none;
}

.btn-signup:hover {
  background: #5A3D7D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 76, 147, 0.4);
}

.btn-login {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", "Poppins", sans-serif;
}

.btn-login:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

.join-link {
  font-size: 0.95rem;
  color: #5A6C7D;
}

.join-link a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.join-link a:hover {
  border-bottom-color: var(--primary-purple);
}

/* Right Visual */
.right-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 1s ease-out;
}
.right-visual img {
  width: 100%;
  height: auto;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hashtag-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: skewX(-15deg) translateY(30px);
  }
  to {
    opacity: 1;
    transform: skewX(-15deg) translateY(0);
  }
}
/* Image overlays inside stripes */
.stripe-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: skewX(15deg) scale(1.3);
  opacity: 0.9;
}

/* Decorative elements */
.floating-shadow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  filter: blur(20px);
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translateX(-50%) scale(1.05);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 40px;
  }
  .right-visual {
    height: 500px;
  }
  .stripe {
    height: 120px;
  }
  .stripe-1 {
    width: 100px;
    left: 80px;
  }
  .stripe-2 {
    width: 100px;
    left: 200px;
  }
  .stripe-3 {
    width: 100px;
    left: 30px;
  }
  .stripe-4 {
    width: 100px;
    left: 150px;
  }
  .stripe-5 {
    width: 100px;
    left: 270px;
  }
}
/* Additional decorative background elements */
.bg-decoration {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  z-index: -1;
}

.bg-decoration-1 {
  background: var(--primary-cyan);
  top: -100px;
  right: -100px;
  animation: float 20s ease-in-out infinite;
}

.bg-decoration-2 {
  background: var(--primary-purple);
  bottom: -100px;
  left: -100px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 30px);
  }
}
.login-container {
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 40px 20px;
  /* Left Panel - Gradient Card */
  /* Right Panel - Login Form */
}
.login-container .left-panel {
  background: linear-gradient(45deg, var(--primary-cyan) 0%, #584277 80%, #584277 100%);
  border-radius: 32px;
  padding: 60px 50px;
  color: var(--text-light);
  height: 100%;
  min-height: 600px;
  max-width: 700px;
  max-height: 750px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  animation: fadeInLeft 0.8s ease-out;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login-container .left-content h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 30px;
  margin-top: 40px;
  line-height: 1.2;
}
.login-container .left-content p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 15px;
  font-weight: 300;
}
.login-container .powered-by {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: auto;
}
.login-container .right-panel {
  padding: 20px;
  display: flex;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.login-container .login-form-container {
  width: 100%;
  margin: 0 auto;
}
.login-container .logo-container {
  text-align: center;
  margin-bottom: 30px;
}
.login-container .logo-icon {
  font-size: 3.5rem;
  color: var(--primary-cyan);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 700;
}
.login-container .logo-text {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}
.login-container .logo-tagline {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--primary-purple);
  text-transform: uppercase;
  font-weight: 500;
}
.login-container h1 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}
.login-container .welcome-text {
  font-size: 0.95rem;
  color: #6B7280;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}
.login-container .form-group {
  margin-bottom: 24px;
}
.login-container label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.login-container .form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 1.5px solid var(--input-border);
  border-radius: 12px;
  font-family: "Roboto", "Poppins", sans-serif;
  transition: all 0.3s ease;
  background: white;
}
.login-container .form-control:focus {
  outline: none;
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 3px rgba(106, 76, 147, 0.1);
}
.login-container .form-control::-moz-placeholder {
  color: #9CA3AF;
}
.login-container .form-control::placeholder {
  color: #9CA3AF;
}
.login-container .form-check-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.login-container .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-container .form-check input[type=checkbox] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-purple);
}
.login-container .form-check label {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
}
.login-container .forgot-password {
  font-size: 0.9rem;
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}
.login-container .forgot-password:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.login-container .btn-login {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--primary-purple);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Roboto", "Poppins", sans-serif;
  box-shadow: 0 4px 15px rgba(106, 76, 147, 0.25);
}
.login-container .btn-login:hover {
  background: #5A3D7D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(106, 76, 147, 0.35);
}
.login-container .signup-link {
  text-align: center;
  margin-top: 25px;
  font-size: 0.95rem;
  color: #6B7280;
}
.login-container .signup-link a {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}
.login-container .signup-link a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 991.8px) {
  .login-container .left-panel {
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 40px;
    min-height: -moz-fit-content;
    min-height: fit-content;
    display: none;
  }
  .login-container .left-content h2 {
    margin: 0;
    margin-bottom: 10px;
    text-align: center;
    font-size: 1.6rem;
  }
  .login-container .left-content p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 5px;
  }
  .login-container .powered-by {
    display: none;
  }
  .home-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .right-visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }
  .home-container {
    padding: 20px;
  }
  .login-container .logo-container {
    text-align: center;
    margin-bottom: 10px;
  }
  .login-container .logo-container img {
    width: 200px;
  }
  .login-container h1 {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .login-container .welcome-text {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  .login-container {
    padding: 20px 0;
  }
  .login-container .right-panel {
    padding: 0 10px;
  }
  .login-container label {
    margin-bottom: 4px;
  }
  .login-container .form-control {
    padding: 12px 14px;
    font-size: 0.9rem;
  }
  .login-container .btn-login {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
  .logo-text {
    font-size: 2.5rem;
  }
  .login-container .form-check {
    padding-left: 0;
  }
  .login-container .form-group {
    margin-bottom: 15px;
  }
  h1 {
    font-size: 2rem;
  }
  .subtitle {
    font-size: 1rem;
  }
  .description {
    font-size: 0.95rem;
    max-width: 100%;
  }
  button {
    width: 100%;
  }
  .right-visual {
    height: 400px;
  }
  .stripe {
    height: 100px;
  }
  .stripe-1 {
    width: 70px;
    left: 40px;
    top: 40px;
  }
  .stripe-2 {
    width: 70px;
    left: 130px;
    top: 40px;
  }
  .stripe-3 {
    width: 70px;
    left: 10px;
    top: 180px;
  }
  .stripe-4 {
    width: 70px;
    left: 100px;
    top: 180px;
  }
  .stripe-5 {
    width: 70px;
    left: 190px;
    top: 180px;
  }
}
@media (max-width: 600px) {
  .home-container {
    padding: 0;
  }
  .home-container .subtitle {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  .home-container .description {
    font-size: 0.9rem;
  }
  .home-container .logo {
    margin-bottom: 15px;
  }
  .logo img {
    max-width: 300px;
  }
  .home-container h1 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}/*# sourceMappingURL=style.css.map */