#pg-signin {
    #card-signin.card {

        #title {
            width: 100%;
            font-size: 24px;
            font-weight: bold;
        }

        .inset {
            position: relative;
        }

        input {
            width: 292px;
            height: 40px;
        }

        .user-input {
            position: relative;
        }

        #eye-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            min-width: 32px;
            border: none;
            background-color: transparent;
            font-size: 24px;
            cursor: pointer;
        }

        #eye-btn::after {
            content: '\f06e';
            font-family: "Font Awesome 6 Free";
        }

        #eye-btn.slash::after {
            content: '\f070';
            font-family: "Font Awesome 6 Free";
        }

        #user-refcode {
            width: 300px;
            height: 38px;
            padding: 14px;
            border-radius: 10px;
            box-shadow: var(--in3d);
            background: #0002;
            display: flex;
            align-items: center;
        }

        .checkbox {
            display: flex;
            align-items: center;
            gap: 20px;

            input {
                width: 30px;
                height: 30px;
            }
        }

        button {
            width: 292px;
            height: 40px;
        }

        #or {
            display: flex;
            align-items: center;
            gap: 10px;

            .line {
                width: 55px;
                height: 50%;
                border-bottom: solid 2px #000;
            }
        }

        #social-signups {
            width: 100%;
            display: flex;
            gap: 10px;

            button {
                position: relative;
                width: 55px;
                height: 55px;
                padding: 0;
                box-shadow:
                    inset 2px 2px 4px -2px #fff8,
                    inset -2px -2px 4px -2px #0008,
                    5px 5px 5px -2px #0008;
                background: #eee;
            }

            img {
                width: 45px;
                height: 45px;
            }
        }

        a {
            color: var(--col4);
            font-weight: bold;
            transition: 200ms ease-in-out;

            &:hover {
                color: var(--col3);
            }
        }

        .signupin {
            display: grid;
            gap: 5px;
        }
    }
}

@media (min-width: 769px) {
    #signinup-form.card {

        input,
        button {
            height: 30px;
        }
    }
}