body {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}
.login-container {
    display: flex;
    width: 800px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.login-form {
    flex: 1;
    padding: 40px;
}
.login-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 15px;
}
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.login-btn {
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.sidebar {
    width: 40%;
    background: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sidebar img {
    width: 80%;
}

/* public/css/style.css */
.bg-images {
    background-image: url("../img/backgroundImage.png"); /* relative to public/css */
    background-size: cover;
    background-position: center;
}

.password-wrapper {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 70%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #888;
}

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

.form-input-inherit{
    background-image: inherit !important;
}
