* {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    background-color: f5f2f0;
}

header, footer {
    padding: 20px;
    text-align: center;
    background-color: #4279A3;
    color: white;
}

header {
    font-size: 32px;
    font-weight: bolder;
}

footer {
    margin-top: auto;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.inputs {
    display: flex;
    flex-direction: column;
    margin-top: 56px;
} 

input {
    margin-bottom: 16px;
}

.btncontainer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.btn {
    border: 0;
    background-color: #4279A3;
    color: white;
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background-color: #5195c9;
}
#radiance {
    margin-top: 24px;
    margin-bottom: 24px;
} 