* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  height: 100vh;
  display: flex;
}

.left-section {
  width: 50%;
  height: 100%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
}

.right-section {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-image: var(--carousel-bg);
  background-size: cover;
  background-position: center;
  transition: background-image 0.5s ease;
}

.logo {
  margin-bottom: 100px;
}

.auth-content {
  text-align: center;
  max-width: 400px;
  margin-top: auto;
  margin-bottom: auto;
}

.auth-content h1 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
  color:#000000
}

.auth-content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.6;
  color: #505759;
  margin-bottom: 40px;
}

.confirm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #505759;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  transition: background-color 0.3s;
}

.swirl-icon {
  width: 30px;
  height: 30px;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(60, 60, 60, 0.1), rgba(30, 30, 30, 0.4));
  z-index: 1;
}

.logo-right {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 30%;
  z-index: 3;
}

.content-background {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(80, 87, 89, 0.45);
  padding: 30px 30px 50px 30px;
  z-index: 2;
}

.carousel-content {
  max-width: 80%;
  margin: 0 auto;
  color: white;
  text-align: center;
}

.carousel-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
  display: block;
  opacity: 1;
}

.carousel-slide h2 {
  font-size: 23px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.carousel-slide p {
  font-size: 13px;
  max-width: 500px;
  color: #FFFFFFCC;
  margin: 0 auto;
  line-height: 1.6;
}

.dots-container {
  margin-top: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.dot.active {
  background-color: white;
}

.geometric-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.7;
}

.action-btn  a, .no-text-decoration{
  text-decoration: none;
}

/* Additional styles for app info */
.app-info {
  margin-top: 30px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.app-info .text-info {
  color: #505759;
  font-size: 14px;
}

.app-info strong {
  color: #000;
  font-weight: 600;
}

/* Logout page specific styles */
.success-icon {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.success-message h3 {
    color: #155724;
    font-size: 18px;
    margin-bottom: 8px;
}

.success-message p {
    color: #155724;
    font-size: 14px;
    margin: 0;
}


.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-secondary {
    background-color: transparent;
    color: #505759;
    padding: 16px 32px;
    border-radius: 50px;
    border: 2px solid #505759;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #505759;
    color: white;
}

.logout-content {
    text-align: center;
    max-width: 400px;
    margin-top: auto;
    margin-bottom: auto;
}

/* Responsive design */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }

  .left-section,
  .right-section {
    width: 100%;
  }

  .left-section {
    padding: 30px;
  }

  .logo {
    margin-bottom: 50px;
  }

  .logo img {
    width: 300px;
  }

  .right-section {
    min-height: 300px;
  }
}