body {
            background-image: url('https://source.unsplash.com/random/1920x1080/?night,purple');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-family: Arial, sans-serif;
            position: relative;
            color: white;
        }

        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .login-container {
            background-color: rgba(30, 30, 50, 0.7);
            padding: 40px;
            border-radius: 5px;
            width: 100%;
            max-width: 450px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        }

        .form-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 40px;
            font-weight: 300;
            color: white;
        }

        .login-form-title {
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .form-control {
            background-color: transparent;
            border: none;
            border-bottom: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 0;
            padding: 10px 5px;
            margin-bottom: 25px;
            color: white;
        }

        .form-control:focus {
            background-color: transparent;
            box-shadow: none;
            border-color: rgba(255, 255, 255, 0.8);
            color: white;
        }

        .form-label {
            color: white;
            letter-spacing: 1px;
        }

        .login-btn {
            background-color: #b85dc7;
            border: none;
            border-radius: 0;
            padding: 12px;
            width: 100%;
            margin-top: 15px;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .login-btn:hover {
            background-color: #9e40ae;
        }

        .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        .forgot-password a {
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .forgot-password a:hover {
            color: #b85dc7;
        }

        .footer {
            position: absolute;
            bottom: 20px;
            text-align: center;
            width: 100%;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .checkbox-label {
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .checkbox-custom {
            width: 18px;
            height: 18px;
            margin-right: 10px;
            margin-top: -2px;
        }

        .error-message {
            color: #ff5252;
            margin-bottom: 15px;
            font-size: 0.9rem;
            text-align: center;
        }