* {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FFFEFC;
}
.bi-cloud{
    margin-top: 10px;
    margin-left: 10px;
}
form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    padding: 2rem 3rem;
}
.inputs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin-bottom: 15px;
}
.inputs label {
    font-size: 15px;
    letter-spacing: 0.3px;
    margin-left: 5px;
    padding-left: 10px;
    font-weight: 500;
}
.inputs input {
    border-radius: 6px;
    background-color: #E5E5E5;
    padding: 1.5rem 2rem;
    border: none;
    font-size: 12px;
    outline: none;
}
.titulo {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 2rem 3rem;
    gap: 15px;
}
.notificacion {
    width: 100%;
    max-width: 600px;
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pie {
    font-weight: 600;
}