:root{
    --bg-primary-light:rgb(255, 255, 255);
    --bg-secondary-light:#00CABD;
    --bg-ternary-light:#FF5152;
    --bg-cuaternary-light:#9C006D;
    --color-primary-light:white;
    --color-secondary-light:black;
    --color-ternary-light:#00CABD;
    --bg-primary-dark:#363F4E;
    --bg-body-dark:#414752;
    --bg-body-ligth:rgb(252, 252, 252);
    --color-text-dark:#363F4E;
}

body{
    position: relative;
    /* background-color: rgb(252, 252, 252); */
    background-color: var(--bg-body-ligth);
}

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

.LabelPayWay{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.LabelPayWay>label{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.LabelPayWay>label>input,.LabelPayWay>label>select{
    width: 100%;
    height: 35px;
}