/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

:where(.container, form, .input-field, header) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    padding: 35px 65px;
    border-radius: 12px;
    row-gap: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

    .container header {
        height: 75px;
        width: 75px;
        background: teal;
        color: #fff;
        font-size: 35px;
        border-radius: 50%;
    }

    .container h4 {
        font-size: 22px;
        color: #333;
        font-weight: 500;
    }

form .input-field {
    flex-direction: row;
    column-gap: 15px;
}

.input-field input {
    height: 60px;
    width: 100%;
    border-radius: 6px;
    outline: none;
    font-size: 24px;
    text-align: center;
    border: 1px solid #ddd;
}

    .input-field input:focus {
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
    }

    .input-field input::-webkit-inner-spin-button,
    .input-field input::-webkit-outer-spin-button {
        display: none;
    }

.btnsuccss {
    margin-top: 35px;
    width: 100%;
    color: #fff;
    font-size: 18px;
    border: none;
    padding: 12px 0;
    border-radius: 6px;
    cursor: pointer;
    background: orange;
    transition: all 0.2s ease;
}

    .btnsuccss.active {
        background: orange;
    }

    .btnsuccss:hover {
        background: orange;
    }
