        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background: linear-gradient(to bottom right, #8B0000, #000000);
            font-family: Arial, sans-serif;
        }
        .container {
            background: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 300px;
        }
        .profile-icon {
            width: 150px;
            height: 80px;
            background: gray;
            border-radius: 50%;
            margin: 0 auto;
        }
        h2 {
            color: #8B0000;
        }
        .input-container {
            margin: 10px 0;
        }
        input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        .eye-icon {
            cursor: pointer;
        }
        .forgot-password {
            color: blue;
            display: block;
            margin: 5px 0;
        }
        .login-btn {
            background: #8B0000;
            color: #fff;
            padding: 10px;
            width: 100%;
            border: none;
            border-radius: 5px;
            cursor: pointer;
        }
        .or-divider {
            margin: 10px 0;
            font-weight: bold;
        }
        .social-icons span {
            display: inline-block;
            width: 30px;
            height: 30px;
            text-align: center;
            line-height: 30px;
            border-radius: 50%;
            margin: 0 5px;
            font-weight: bold;
        }
        .google { background: #DB4437; color: white; }
        .facebook { background: #3B5998; color: white; }
        .apple { background: black; color: white; }