body {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #111827;
}

.container {
    padding: 20px;
    border-radius: 12px;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: #1f2937;
    gap: 15px;

    img {
        width: 200px;

    }

    div {
        width: 100%;
        justify-content: center;
        align-items: center;
    }


    h1 {
        font-size: 25px;
        font-family: sans-serif;
        font-weight: 500;
        color: #b1b9c7;
        text-align: center;
        margin: 0;
    }

    p {
        color: #9ca3af;
        font-family: sans-serif;
    }

    form {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;

        input {
            outline: none;
            border: none;
            padding: 10px 8px;
            width: 300px;
            border-radius: 3px;
            background-color: #657786;
            color: white;

            &::placeholder {
                color: #b1b9c7;
            }
        }

        button {
            outline: none;
            border: none;
            height: 35px;
            width: 200px;
            border-radius: 3px;
            padding: 7px 15px;
            background-color: #26c0c0;
            color: rgb(255, 255, 255);
            cursor: pointer;

            &:hover {
                background-color: #1fb1b1;
            }
        }
    }
}

@media (max-width: 450px) {
    body{
        overflow: hidden;
    }
    .container {
        width: 90%;
        height: 800px;
        padding: 15px;

        div {
            text-align: center;
        }

        form {
            gap: 70px;

            input {
                transform: scale(2.3);
            }

            button {
                transform: scale(2.3);
            }
        }

        img {
            width: 450px;
        }

        h1 {
            font-size: 45px;
        }

        p {
            font-size: 35px
        }
    }
}