* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffddf8; /* White background for the body */
    position: relative; /* For positioning the background element */
}
.login-container {
    background-color: #4d2f4f; /* Dark color for the inner card */
    color: #fff; /* White text color */
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 450px;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Ensure it's above the background */
}
.login-container::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: -1; /* Behind the login container */
}
.login-container::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(30deg);
    z-index: -1; /* Behind the login container */
}
.login-container img {
    display: block;
    margin: 0 auto 20px;
    width: 100px;
}
.login-container h1 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #fff; /* White text color */
    text-align: center;
}
.login-container label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff; /* White text color */
    text-align: left;
}
.login-container .input-wrapper {
    position: relative;
    width: 100%;
}
.login-container input[type="text"],
.login-container input[type="password"] {
    width: 100%;
    padding: 15px;
    margin: 10px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
}
.login-container input[type="text"]:focus,
.login-container input[type="password"]:focus {
    border-color: #fff;
    outline: none;
}
.login-container .eye-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: #4d2f4f;
    font-size: 20px;
    padding-bottom: 10px;
}
.login-container button {
    width: 100%;
    padding: 10px;
    background-color: #fff; /* White button */
    color: #4d2f4f; /* Dark text color for contrast */
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}
.login-container button:hover {
    background-color: #e0e0e0; /* Light gray on hover */
}
.error {
    color: red;
    text-align: center;
    margin-bottom: 20px;
}
.login-container p {
    text-align: center;
    font-size: 14px;
    color: #fff; /* White text color */
}
.login-container p strong {
    color: #e0e0e0; /* Light gray for the sign-up link */
    cursor: pointer;
}
/* Decorative element behind the login card */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1; /* Behind the login container */
}