* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    line-height: 18px;
}

body {
    background-color: #E5E5E5;
    background-image: url('https://source.unsplash.com/1600x900/?cash/');
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
}


.container {
    width: 375px;
    background-color: #f4f4f4;
}

header {
    background-color: #1B83E2;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-weight: 400;
    font-size: 24px;
    color: white;
}

main {
    padding: 25px;
}

label {
    font-weight: 400;
    font-size: 14px;
    color: #777777;
}

select {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    appearance: none;
    padding-left: 16px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    margin-top: 6px;
    margin-bottom: 25px;
}

input {
    width: 100%;
    height: 48px;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 4px;
    outline: none;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
    margin-bottom: 25px;
    padding-left: 16px;
    font-size: 20px;
}

button {
    cursor: pointer;
    background: #1B83E2;
    border-radius: 25px;
    color: white;
    height: 48px;
    width: 100%;
    border: none;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 16px;
}

button:hover {
    opacity: 0.9;
}

button:active {
    opacity: 0.7;
}

section {
    border: 1px solid #1B83E2;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.container-images {
    padding: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.p-text {
    font-weight: 400;
    font-size: 14px;
    color: #777777;
}

.p-number {
    font-weight: 700;
    font-size: 20px;
    color: #1B83E2;
}

.p-real{
    font-weight: 700;
    font-size: 20px;
    color: #1B83E2;
}