* {
    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: var(--index_backcolor);
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    padding: 2rem 3rem;
}
h1{
    color: var(--black_color);
}
.inputs {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
    margin-bottom: 15px;
}
.inputs label {
    font-size: var(--normal_text_b);
    letter-spacing: 0.3px;
    margin-left: 5px;
    padding-left: 10px;
    font-weight: 500;
    color: var(--black_color);
}
.inputs input {
    border-radius: 6px;
    background-color: var(--index_inputs);
    padding: 1.5rem 2rem;
    border: none;
    font-size: var(--normal_text);
    outline: none;
    color: var(--black_color);
}
.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;
    color: var(--black_color);
}
.btn-block_space{
    display: block;
    width: 100%;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;  
    width: 100%;
}