    @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
        list-style: none;
        text-decoration: none;
    }

    html,
    body {
        display: grid;
        height: 100%;
        width: 100%;
        place-items: center;
        /* background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('https://i.postimg.cc/8CnC2xH5/background.jpg'); */
        background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url('/assets/img/background.webp');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .wrapper {
        max-width: 390px;
        background-color: transparent;
        backdrop-filter: blur(15px);
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 20px 25px rgba(0, 0, 0, 0.274);
        overflow: hidden;
    }

    .wrapper .title-text {
        display: flex;
        width: 200%;
    }

    .wrapper .title-text .title {
        width: 50%;
        text-align: center;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wrapper .title-text .title img {
        max-width: 100%;
        height: auto;
    }

    .wrapper .form-container {
        width: 100%;
        overflow: hidden;
    }

    .form-container .slide-controls {
        display: flex;
        justify-content: space-between;
        height: 50px;
        width: 100%;
        border: 1px solid lightgrey;
        overflow: hidden;
        margin: 30px 0 10px 0;
        border-radius: 10px;
        position: relative;
    }

    .slide-controls .slide {
        width: 100%;
        height: 100%;
        font-size: 18px;
        font-weight: 500;
        line-height: 48px;
        text-align: center;
        cursor: pointer;
        color: #fff;
        z-index: 1;
        transition: all .6s ease;
    }

    .slide-controls .signup {
        color: #212121;
    }

    .slide-controls .slide-tab {
        position: absolute;
        height: 100%;
        width: 50%;
        top: 0;
        left: 0;
        z-index: 0;
        background: -webkit-linear-gradient(left, #f7d541, #ed863b);
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    input[type="radio"] {
        display: none;
    }


    #signup:checked~.slide-tab {
        left: 50%;
    }

    #signup:checked~.signup {
        color: #fff;
    }

    #signup:checked~.login {
        color: #212121;
    }

    .form-container .form-inner {
        display: flex;
        width: 200%;
    }

    .form-container .form-inner form {
        width: 50%;
        transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        ;
    }

    .form-inner form .field {
        height: 50px;
        width: 100%;
        margin-top: 20px;
    }

    .form-inner form .field input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 17px;
        padding-left: 15px;
        border-radius: 10px;
        border: 1px solid lightgray;
        border-bottom-width: 2px;
        transition: all 0.4s ease;
    }

    .form-inner form .field input:focus {
        border-color: #ed863b;
    }

    .form-inner form .pass-link {
        margin-top: 5px;
    }

    .form-inner form .pass-link a,
    a {
        color: #fff;
        text-decoration: none;
    }

    .form-inner form .signup-link {
        color: #fff;
        text-align: center;
        margin-top: 25px;
    }

    .form-inner form .signup-link a {
        font-weight: 500;
    }

    .form-inner form .pass-link a:hover,
    .form-inner form .signup-link a:hover {
        text-decoration: underline;
    }

    form .field input[type="submit"] {
        background: -webkit-linear-gradient(left, #f7d541, #ed863b);
        color: #fff;
        font-size: 20px;
        font-weight: 500;
        padding-left: 0;
        border: none;
        cursor: pointer;
    }

    /* Checkbox styling */
    .field.session-optin {
        display: flex;
        align-items: center;
        margin: 15px 0;
    }

    .field.session-optin input[type="checkbox"] {
        width: auto;
        height: auto;
        margin-right: 10px;
    }

    .field.session-optin label {
        color: #fff;
        font-size: 18px;
        cursor: pointer;
    }