    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        user-select: none;
    }

    body {
        min-height: 100dvh;
        max-width: 100vw;
        background-color: rgb(249, 252, 247);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        overflow-x: hidden;
    }

    /* Logo Section */
    .logo {
        width: 100%;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #4b4b4b00;
    }

    /* Form */
    .form {
        width: 85vw;
        max-width: 400px;
        height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border-radius: 5px;
        background-color: rgba(189, 186, 186, 0.1);
        backdrop-filter: blur(10px);
        gap: 20px;
        box-shadow: -34px -34px 30px rgba(0, 0, 0, 0.027),
            0 0 20px rgba(0, 0, 0, 0.096);
        transform: translateY(-15%);
    }

    /* Autofill Input Styles */
    input:-webkit-autofill,
    input:-webkit-autofill:hover,
    input:-webkit-autofill:focus,
    input:-webkit-autofill:active {
        color: black !important;
        -webkit-box-shadow: 0 0 0px 1000px rgba(11, 12, 12, 0.089) inset !important;
    }

    /* Input Box */
    .form .input-box {
        width: 85%;
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: #4b4b4b;
    }

    .input-box input {
        width: 100%;
        background-color: rgba(22, 22, 22, 0.034);
        outline: none;
        padding: 8px 10px;
        border-radius: 4px;
        border: 0;
    }

    /* Input Button */
    .input-box .button {
        height: 60%;
        position: absolute;
        top: 43%;
        right: 0;
        background-color: transparent;
        border: none;
        border-left: 1px dotted #0000005e;
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        color: #4b4b4b;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Custom Checkbox */
    input[type="checkbox"] {
        appearance: none;
        width: 17px;
        height: 19px;
        border: 1px solid rgba(0, 0, 0, 0.596);
        padding: 0;
        border-radius: 3px;
        position: relative;
    }

    /* Checkbox Checked State */
    input[type="checkbox"]:checked {
        background-color: rgb(0, 113, 128);
        border: none;
    }

    /* Checkbox Tick */
    input[type="checkbox"]:checked::after {
        content: '';
        width: 4px;
        height: 9px;
        border: solid white;
        border-width: 0 2px 2px 0;
        position: absolute;
        top: 3px;
        left: 7px;
        transform: rotate(45deg);
    }

    /* Footer */
    footer {
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;
        padding-bottom: 20px;
        background-color: transparent;
    }