*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #0264d6;
}

.container {
    width: 20%;
    min-width: 320px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    font-family: "poppins", sans-serif;
}

.inputs-wrapper {
    background-color: #1f2325;
    padding: 30px 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
}

h4 {
    color: #ffffff;
    text-align: center;
    font-size: 24px;
}

input, button {
    height: 50px;
    background-color: #ffffff;
    color: #080808;
    font-size: 24px;
    font-weight: 500;
    border-radius: 5px;
    border: none;
}

input {
    width: 100%;
    padding: 0 20px;
    font-size: 24px;
    margin: 20px 0;
    outline: 0;
}

button {
    width: 100%;
    cursor: pointer;
}

.outputs-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.outputs-wrapper div {
    height: 85px;
    width: 100%;
    background-color: #1f2325;
    border-radius: 5px;
    color: #fff;
    display: flex;
    place-items: center;
    padding: 10px 0;
    box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.3);
    justify-content: space-evenly;
}

span {
    font-size: 25px;
    font-weight: 500;
}

p {
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
}
