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

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #43affc;
}

.wrapper {
    width: 400px;
    border-radius: 7px;
    background-color: #fff;

    header {
        color: #43affc;
        font-size: 21px;
        font-weight: 500;
        padding: 16px 15px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #bfbfbf;

        i {
            /* arrow icon */
            cursor: pointer;
            font-size: 0px;
            margin-right: 8px;
        }
    }

    .input-part {
        margin: 20px 25px 30px;

        .info-text {
            display: none;
            font-size: 17px;
            text-align: center;
            padding: 12px 10px;
            border-radius: 7px;
            margin-bottom: 15px;
        }

        .info-text.error {
            display: block;
            color: #721c24;
            background-color: #f8d7da;
            border: 1px solid #f5c6cb;
        }

        .info-text.pending {
            display: block;
            color: #0c5460;
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
        }

        :where(input, button) {
            width: 100%;
            height: 55px;
            border: 0;
            outline: 0;
            font-size: 18px;
            border-radius: 7px;
        }

        input {
            text-align: center;
            border: 1px solid #bfbfbf;
        }

        input:is(:focus, :valid) {
            border: 2px solid #43affc;
        }

        .separator {
            height: 1px;
            width: 100%;
            margin: 25px 0;
            background: #ccc;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .separator::before {
            content: 'or';
            color: #ccc;
            font-size: 19px;
            padding: 0 15px;
            background-color: #fff;
        }

        button {
            color: #fff;
            cursor: pointer;
            background-color: #43affc;
        }
    }

    /* Weather Part */
    .weather-part {
        margin: 30px 0 0;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        img {
            max-width: 125px;
        }

        .temp {
            display: flex;
            font-size: 72px;
            font-weight: 500;

            .numb {
                font-weight: 600;
            }

            .deg {
                font-size: 40px;
                margin: 10px 5px 0 0;
                display: flex;
            }
        }

        .weather {
            font-size: 21px;
            text-align: center;
            margin: -5px 20px 15px;
        }

        .location {
            display: flex;
            align-items: center;
            font-size: 21px;
            margin-bottom: 30px;

            i {
                font-size: 22px;
                margin-right: 5px;
            }
        }

        .bottom-details {
            width: 100%;
            display: flex;
            align-items: center;
            border-top: 1px solid #bfbfbf;
            justify-content: space-between;

            .column {
                width: 100%;
                display: flex;
                padding: 15px 0;
                align-items: center;
                justify-content: center;

                i {
                    color: #43affc;
                    font-size: 40px;
                }

                .details .temp,
                .humidity span {
                    font-size: 18px;
                    font-weight: 500;
                    margin-top: -3px;
                }

                .details .temp .deg {
                    margin: 0;
                    font-size: 17px;
                    padding: 0 2px 0 1px;
                }

                .details p {
                    font-size: 14px;
                    margin-top: -6px;
                }
            }

            .column.humidity {
                border-left: 1px solid #bfbfbf;
            }
        }
    }
}

.wrapper.active header i {
    font-size: 30px;
    margin-left: 5px;
}

.wrapper.active .input-part {
    display: none;
}

.wrapper.active .weather-part {
    display: flex;
}