* {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

label {
    font-size: 0.9rem;
}

body {
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    align-items: center;
    background: #c4cfcfd1;
    min-height: 100dvh;
    gap: 24px;
    /* flex-wrap: wrap; */
    padding: 20px;
    padding-bottom: 0;
}
.lottieContainer {
    /* margin-top: auto; */
    height: 400px;
    width: 400px;
    overflow: hidden;
    display: flex;
    justify-content: end;
    @media screen and (max-width: 768px) {
        display: none;
    }
    lottie-player {
        height: 100%;
        width: 100%;
        transform: scale(1.3);
    }
}

.login-container {
    width: min(100%, 400px);
    background: #f5f5f5;
    padding: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 30px;
    box-shadow: 0 0 2rem #f7f7f790;
    gap: 1.5rem;
    /* margin: auto; */

    .logo {
        height: 100px;
        width: 100%;
        padding: 12px 0;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    form {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        .input-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;

            .input-wrapper {
                background: #fff;
                box-shadow: 0 0 1rem hsl(231, 62%, 94%);
                padding: 0.8rem;
                border-radius: 15px;
                display: flex;
                align-items: center;
                gap: 0.5rem;
                overflow: hidden;

                input {
                    flex: 1;
                    border: none;
                    outline: none;
                    font-size: 0.8rem;
                    min-width: 0;
                }

                i {
                    color: hsl(0, 0%, 30%);
                }

                .toggle-password {
                    cursor: pointer;
                    flex-shrink: 0;
                    font-size: 1rem;
                }
            }
        }

        .remember-me {
            input[type="checkbox"] {
                width: 15px;
                height: 15px;
                accent-color: #2eaaae;
            }

            .input-wrapper {
                background: #fff;
                box-shadow: 0 0 1rem hsl(231, 62%, 94%);
                padding: 0.8rem;
                border-radius: 20px;
                gap: 0.5rem;
                display: flex;
                align-items: center;
            }
        }

        .login-btn {
            padding: 1rem;
            background: #2eaaae;
            color: #fff;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s ease;

            &:hover {
                background: #23999a;
            }
        }
    }
}
