body {
        font-family: 'Poppins', sans-serif;
        background-color: #f4f4f4;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        margin: 0;
    }

    /* Header Section */
    .header {
        width: 100%;
        background-color: white;
        padding: 10px 20px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 70px;
    }

    .header img {
        width: 80px;
        height: auto;
        margin-right: 15px;
    }

    .header h1 {
        font-size: 22px;
        font-weight: 600;
        color: #333;
        margin: 0;
        line-height: 1.2;
    }

    /* Form Container */
    .form-container {
        background: white;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        text-align: center;
        width: 400px;
        margin-top: 80px;
    }

    .form-container h2 {
        margin-bottom: 20px;
        font-weight: 600;
        color: #333;
    }

    .form-container label {
        font-weight: 500;
        display: block;
        text-align: left;
        margin-top: 10px;
        color: #555;
    }

    .form-container input {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        color: #333;
    }

    .form-container input::placeholder {
        color: #999;
        font-size: 14px;
        opacity: 1;
    }

    /* For older browsers */
    :-ms-input-placeholder { 
        color: #999;
    }

    ::-ms-input-placeholder { 
        color: #999;
    }
    .form-container button {
        width: 100%;
        margin-top: 15px;
        padding: 10px;
        background-color: #007bff;
        border: none;
        color: white;
        font-size: 16px;
        font-weight: 500;
        border-radius: 5px;
        cursor: pointer;
        transition: 0.3s;
    }

    .form-container button:hover {
        background-color: #0056b3;
    }
