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

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    background-color: #d6d6d6;
    padding: 20px;
}
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}


main {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 375px;
    background-color: #ffffff;
    border-radius: 25px;
    padding: 20px;
    margin: 0 auto 42px;
    border: 1px solid #09a6a3;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: 1px solid #09a6a3;
    border-radius: 20px;
    padding: 12px;
    margin-top: 36px;
}

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

select {
    font-size: 16px;
    font-weight: 700;
    color: #555555;
    border: 1px solid #a8ab9b;
    border-radius: 10px;
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
    padding-left: 18px;
    cursor: pointer;
}

.input-currency {
    font-size: 16px;
    font-weight: 700;
    color: #555555;
    border: 1px solid #a8ab9b;
    border-radius: 10px;
    width: 100%;
    height: 48px;
    margin-bottom: 24px;
    padding-left: 18px;
    cursor: pointer;
}

button {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background-color: #09a6a3;
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 48px;
    cursor: pointer;
}
button:hover {
    opacity: 0.8;
}
button:active {
    opacity: 0.6;
}
.arrow-img {
    width: 100px;
    margin: 5px 0;
}
.currency-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.currency{
    font-size: 14px;
    font-weight: 400;
    color: #777777;

}
.currency-value,.currency-value-to-convert {
    font-size: 20px;
    font-weight: 700;
    color: #555555;
}
.select-currency {
    appearance: none;
}


        
        
    
    