/* Base Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    padding: 0;
    background: url("img/login-bg.png") no-repeat center;
}

.container {
    margin: 50px auto;
    width: 75%;
    display: flex;
    flex-wrap: wrap;
    backdrop-filter: transparent; /* Adds the blur effect */
    
}

/* Form Section */
.form-section {
    background-color: rgba(255, 255, 255, 0.15);
 

    backdrop-filter: blur(100px);
    padding: 20px; /* Adjusted padding */
    width: 48%; /* Ensures the form takes half of the container's width */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 10px;
    box-sizing: border-box;
}


  hr{
    border: none;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
    width: 70%;
    margin: 20px 60px;
  }

  .switch-container {
    position: relative;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    overflow: hidden;
    /* background-color: rgba(255, 255, 255, 1); */
    backdrop-filter: blur(100px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border: 1px solid rgba(254, 207, 15, 1);
  }

  .switch-slider {
    position: absolute;
    width: 50%;
    height: 100%;
    background-color: rgba(254, 207, 15, 1);
    border-radius: 25px;
    transition: transform 0.3s ease;
  }

  .switch-button {
    position: relative;
    flex: 1;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: rgba(1, 33, 66, 1);
    cursor: pointer;
    z-index: 1;
  }

  .switch-button.inactive {
    color: rgba(255, 255, 255, 1);
  }
h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin: 10px 0 5px;
}

input {
    padding: 15px 15px; /* Increased padding for better spacing */
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    backdrop-filter: blur(100px)

}

input::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Placeholder with transparency */
}

.signup-btn {
    background: rgba(254, 207, 15, 1);
    color: rgba(1, 33, 66, 1);
    padding: 12px;
    border: none;
    border-radius: 15px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
    width: 70%;
    margin: 10px 60px;
}

.signup-btn:hover {
    background: rgba(254, 207, 15, 1);
}

.login-link {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 1);
}

/* Welcome Section */
.welcome-section {
    width: 48%; /* Ensures the welcome box takes half of the container's width */
      background-color: rgba(1, 33, 66, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    padding: 20px; /* Adjusted padding */
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 10px;
    box-sizing: border-box;
}
.welcome{
    border: none;
    height: 3px;
    background-color: rgba(255, 255, 255, 1);
    width: 32%;
    margin: 20px 67px;
}
.welcom-textarea{
    margin-top: 3rem;
}
.logo-container img {
    width: 250px; /* Adjust logo size */
    margin-bottom: 20px; /* Space below logo */
}

.welcome-section h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-align: left;
    margin-left: 50px;
}

.welcome-section p {
    margin-left: 60px;
    text-align: -webkit-left;
    font-size: 21px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    font-weight: 300;
}

.welcome-section strong {
    color: white;
}

.social-icons {
    display: flex;
    margin-top: 10rem;
}

.social-icons a {
    margin: 0 10px;
    transition: 0.3s;
    color: #ccc;
    font-size: 24px;
}

.social-icons a:hover {
    color: rgba(254, 207, 15, 1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
        height: auto;
    }

    .form-section, .welcome-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .welcome-section h1 {
        font-size: 2em;
    }

    .welcome-section p {
        font-size: 1em;
    }
    .container {
        margin: 1px auto;
    }
    .form-section {
        padding: 0px;
    }
}
