    body {
        font-family: Arial, sans-serif;
        background: #fff;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }

    .container {
        display: flex;
        width: 100%;
        max-width: 1100px;
        align-items: center;
        justify-content: space-between;
        padding: 20px;
    }

    .illustration {
        flex: 1;
        text-align: center;
    }

    .illustration img {
        max-width: 100%;
        height: auto;
    }

    .form-section {
        max-width: 350px;
        margin: auto;
        text-align: center;
    }

    .logo img {
        display: block;
        margin: 0 auto 10px;
        height: 50px;
    }

    .brand-name {
        margin: 0;
        font-size: 22px;
        font-weight: bold;
    }

    h2 {
        margin: 10px 0;
        font-size: 22px;
        font-weight: bold;
    }

    h3 {
        margin: 10px 0;
        font-size: 20px;
        font-weight: bold;
        text-align: justify;
    }

    p {
        margin: 5px 0 20px;
        color: #555;
        font-size: 14px;
        text-align: justify;
    }

    form {
        margin-top: 20px;
    }

    form input {
        width: 90%;
        padding: 12px;
        margin-bottom: 15px;
        border: none;
        border-bottom: 1px solid #ccc;
        font-size: 14px;
        outline: none;
        background: transparent;
    }

    form input:focus {
        border-bottom: 1px solid #fe6b21;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        margin-top: 20px;
        background: #fe6b21;
        color: #fff;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 14px;
        font-weight: bold;
    }

    .btn-google {
        width: 100%;
        padding: 12px;
        margin-top: 12px;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 6px;
        font-size: 14px;
    }

    .btn-google img {
        width: 20px;
        height: 20px;
    }

    .footer-text {
        margin-top: 20px;
        font-size: 14px;
    }

    .footer-text a {
        color: #fe6b21;
        text-decoration: none;
        font-weight: bold;
    }

    @media(max-width: 900px) {
        .container {
            flex-direction: column;
            text-align: center;
        }

        .form-section {
            padding: 20px 0;
            width: 100%;
        }

        .alert {
            padding: 12px;
            border-radius: 6px;
            margin-bottom: 20px;
            font-weight: 500;
            text-align: center;
            width: 100%;
            animation: fadeIn 0.4s ease-in;
        }
    }