.login_input {
    background-color: transparent;
    width: 400px;
    height: 50px;
    padding: 0 20px;
    color: white;
    font-weight: 400;
    border: none;
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

/* Override browser autofill styles */
.login_input:-webkit-autofill,
.login_input:-webkit-autofill:hover,
.login_input:-webkit-autofill:focus,
.login_input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: white !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* For other browsers */
.login_input:autofill {
    background-color: transparent !important;
    color: white !important;
}

.login_input:focus {
    border-bottom-color: #59DD4B;
    background-color: rgba(89, 221, 75, 0.05);
}

.login_input::placeholder {
    color: #666666;
    opacity: 1;
    font-weight: 400;
}

.login_btn {
    background-color: #131523;
    width: 150px;
    height: 45px;
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid #333333;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login_btn:hover {
    border-color: #59DD4B;
    color: #ffffff;
    background-color: rgba(89, 221, 75, 0.1);
}

.singUpMainSim {
    font-size: 12px;
}

/* Specific styling for authentication container */
#app_authentication {
    width: 450px;
    height: auto;
    padding: 30px;
    border-radius: 25px;
    background-color: #1A1E2D99;
    box-shadow: 0px 0px 90px rgba(0, 0, 0, 0.3);
}

/* Authentication-specific chip styling */
#firebaseAuth .chip {
    background-color: transparent;
    border-radius: 0px;
    border: 1px solid #333333;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 400;
    color: #cccccc;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 12px;
    box-sizing: border-box;
}

#firebaseAuth .chip:hover {
    border-color: #59DD4B;
    color: #ffffff;
}

#firebaseAuth .chip.selected {
    background-color: transparent;
    color: #59DD4B;
    border-color: #59DD4B;
}

/* Authentication-specific checkbox styling */
#firebaseAuth .custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 0px;
    margin-right: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

#firebaseAuth .custom-checkbox input[type="checkbox"]:checked+.checkmark {
    background-color: transparent;
    border-color: #59DD4B;
}

#firebaseAuth .custom-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: "";
    width: 8px;
    height: 4px;
    border: solid #59DD4B;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg) scaleX(-1);
    position: absolute;
}

/* Password field container styling */
.password-field-container {
    position: relative;
    display: inline-block;
    width: 400px;
}

.password-field-container .login_input {
    width: 100%;
    padding-right: 50px; /* Make room for the icon */
    box-sizing: border-box;
    border-bottom: 1px solid #333333;
}

.password-toggle-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666666;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.password-toggle-icon:hover {
    color: #59DD4B;
}

.password-toggle-icon svg {
    width: 20px;
    height: 20px;
}
