    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        /*background: linear-gradient(to right, #6a11cb, #2575fc);*/
        background: #f7fafc;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        margin: 0;
    }

    .login-container {
        background: #ffffff;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        width: 440px;
        transition: transform 0.3s ease-in-out;
    }

    .login-container:hover {
        transform: translateY(-5px);
    }

    h2 {
        text-align: left;
        color: #333;
        margin-bottom: 25px;
        margin-top: 0;
        font-weight: 600;
    }

    .form-group {
        margin-bottom: 15px;
    }

    label {
        color: #1f1f1f;
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        font-size: 14px;
    }

    input[type="email"],
    input[type="password"] {
        width: 95%;
        padding: 8px 16px;
        border: 1px solid #ddd;
        border-radius: 5px;
        transition: border-color 0.3s;
        margin-bottom: 10px;
        height: 22px;
    }

    input[type="email"]:focus,
    input[type="password"]:focus {
        border-color: #0056b3;
        outline: none;
    }

    button {
        width: 100%;
        padding: 10px 0;
        color: #fff;
        background-color: var(--primary-color);
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        font-size: 16px;
        transition: background-color 0.3s;
    }

    button:hover {
        background-color: var(--primary-hover-color);
    }

    .error-message {
        color: #ff0000;
        text-align: center;
        margin-bottom: 20px;
    }

    .checkbox label {
        font-size: 14px;
        user-select: none;
        color: #333;
    }

    hr {
        border-top: 1px solid #eee;
        margin: 20px 0;
    }

    .sign-up {
        text-align: center;
        font-size: 14px;
        color: #666;
    }

    .sign-up a {
        color: #0056b3;
        text-decoration: none;
    }

    .sign-up a:hover {
        text-decoration: underline;
    }

    @media(max-width:800px) {
        .login-container {
            width: 78%;
        }

        input[type="email"],
        input[type="password"] {
            width: 88%;
        }
    }