body {
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    height: 100vh;
    width: 100%;
    justify-content: center;
    justify-items: center;
}

.transparent-card {
    max-width: 400px;
    width: 100%;
    /* border-radius: 12px; */
    background-color: rgba(255, 255, 255, 0); /* Semi-transparent background */
    padding: 20px;
    position: relative;
}

h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

input.form-control {
    border-radius: 4px; /* Sharper corners */
    padding: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Box shadow */
}

.mb-3 {
    margin-bottom: 1.5rem !important; /* Increase spacing between input fields */
}

button.btn-primary {
    background-color: #14213D;
    border: none;
    padding: 10px;
    border-radius: 8px;
    margin-top: 2rem; /* Added more space between inputs and the button */
}

button.btn-outline-secondary {
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

button.btn-outline-secondary img {
    margin-right: 8px;
}

/* Positioning the floating image */
.floating-image {
    position: absolute;
    top: -30px; /* Position the image 50% from the top of the card */
    left: -100px; /* Position the image 50px to the left of the card */
    min-width: 200px; /* Adjust image size */
    z-index: -10; /* Ensure it appears below the form */
  }

  /* General styles for background logos */
.bg-logo {
    position: absolute;
    opacity: 0.2; /* Adjust opacity to make it more subtle */
    z-index: -1;  /* Ensure it stays behind the form */
}

/* Specific positioning for each logo */
.bg-logo-1 {
    top: 10%;
    left: 5%;
    width: 150px; /* Adjust size */
    border: 1px;
}

.bg-logo-2 {
    bottom: 10%;
    right: 5%;
    width: 150px; /* Adjust size */
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .container {
        max-width: 500px;
    }

    /* Adjust the floating image on larger screens */
    /* .floating-image {
        transform: translateX(-120px);
      } */
}
