@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Merriweather", sans-serif;
}

body {
    background: #00008b;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #fff;
    padding: 25px;
    width: 450px;
    border-radius: 10px;
}

.container h2 {
    text-align: center;
    margin-bottom: 15px;
}

.input-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 30px;
    margin-bottom: 15px;
    background: #00008b;
}

.input-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.input-box img {
    height: auto;
    width: 55px;
    background: #ddd;
    border-radius: 30px;
    cursor: pointer;
}

::-webkit-calendar-picker-indicator {
    background-color: white;
    padding: 3px;
    cursor: pointer;
    border-radius: 3px;
}

.output-box {
    margin: 15px;
}

.output-box div {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-left: 10%;
    margin-bottom: 5px;
    font-weight: 500;
}

img {
    height: 30px;
    width: 30px;
}

.output-box table {
    width: 100%;
    padding: 15px 0;
}

td {
    padding: 5px;
    border-bottom: 1px solid #ddd;
}

#currentAge,
#DOB {
    padding: 5px;
    color: #3939e6;
}