body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Logo and Navigation */
.navbar {
    background-color: #000;
    padding: 15px 0;
}

.navbar-brand img {
    width: 120px;
    height: auto;
}

.navbar-nav .nav-link {
    color: #fff;
    margin-right: 25px;
    font-size: 14px;
}

/* Language Dropdown Styles */
.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-selector {
    background-color: #fff;
    color: #000;
    padding: 5px 15px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    font-weight: 500;
    cursor: pointer;
    user-select: none;
    border: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 120px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 4px;
    margin-top: 2px;
    right: 0;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #f1f1f1;
}

/* Main Content Container */
.content-container {
    display: flex;
    flex: 1;
    padding: 0;
}

/* Illustration Section */
.illustration-container {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.illustration-container img {
    max-width: 100%;
    height: auto;
}

/* Form Section */
.form-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
}


.auth-title {
    font-size: 32px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 25px;
}
/* .social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
  } */

  .social-icons {
   
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 20px;
  }
.social-text{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
    font-size: 20px;
    font-weight: bolder;
}
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    padding: 14px;
    border: 2px solid #000;
    border-radius: 8px;
    margin-bottom: 20px;
    width: 100%;
    font-size: 16px;
}

.password-field {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.form-checkbox {
    display: inline-block;
    margin-right: 8px;
    width: 18px;
    height: 18px;
    background-color: #000;
    border-radius: 3px;
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.forgot-password {
    font-weight: 500;
    text-decoration: none;
    color: #000;
}

.submit-button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-weight: 500;
}

/* Footer */
.auth-footer {
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid #ddd;
}

.footer-text {
    padding-left: 80px;
    font-size: 14px;
}

/* Mobile View */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 15px;
    }

    .navbar-brand img {
        width: 100px;
    }

    .content-container {
        flex-direction: column;
        background-color: #000;
    }

    .illustration-container {
        display: none;
    }

    .form-container {
        width: 100%;
        padding: 30px 20px;
        background-color: #fff;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        margin-top: 100px;
        position: relative;
    }

    /* .auth-title {
        color: #fff;
        position: absolute;
        top: -100px;
        left: 150px;

        margin-bottom: 0;
    } */
    .auth-title {
        color: #fff;
        position: absolute;
        top: -60px;
        left: 0;
        right: 0;
        text-align: center;
        margin: 0 auto;
      }
    .form-control {
        padding: 12px;
    }

    .submit-button {
        padding: 12px;
    }

    .auth-footer {
        display: none;
    }

   
    
}
