.password-container {
    position: relative;
    width: 100%;
}

.password-container input[type="password"],
.password-container input[type="text"] {
    width: 96%;
    padding-right: 0px; /* Space for the button */
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 0%;
    transform: translateY(-50%);
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
    color: #666;
}

.password-toggle:hover {
    color: #333;
    background: none;
}

/* Keep your existing styles and add these new ones */
.eye-icon {
    width: 24px;
    height: 24px;
    fill: #666;
}

.eye-icon path {
    fill: currentColor;
}

input {
    padding: 0.8rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

button, input[type="submit"] {
    margin-top: 2rem;
    padding: 1rem;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}
button:hover, input[type="submit"]:hover {
    background-color: #0056b3;
}