:root {
    --e-global-color-primary: #01223E;
    --e-global-color-secondary: #474747;
    --e-global-color-a9ba610: #FF7E16;
    --e-global-color-0d703fb: #FFFFFF;
    --e-global-typography-secondary-font-weight: 400;
    --e-global-typography-text-font-family: "Roboto";
    --e-global-typography-text-font-weight: 400;
    --e-global-typography-accent-font-family: "Roboto";
    --e-global-typography-accent-font-weight: 500;
    --e-global-typography-ca172ba-font-family: "Lato";
    --e-global-typography-ca172ba-font-size: 18px;
    --e-global-typography-ca172ba-font-weight: 700;
    --e-global-typography-ca172ba-text-transform: none;
    --e-global-typography-ca172ba-line-height: 20px;
    --e-global-typography-ca172ba-letter-spacing: 0px;
    --e-global-typography-ca172ba-word-spacing: 0.1em;
    --e-global-typography-5212ec1-font-family: "Lato";
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --card-bg: rgba(255, 255, 255, 0.98);
    --text-color: #1e293b;
    --border-color: #e2e8f0;
    --gradient-start: #f8fafc;
    --gradient-end: #f1f5f9;
}
/* Uniformidad para botones de login */
.login-btn {
    width: 100%;
    padding: 9px 33px;
    font-size: 16px;
    border-radius: 4px;
    margin: 15px 0 0;
    display: block;
    text-align: center;
    box-sizing: border-box;
}
.header-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    margin-bottom: 15px;
}
.back-arrow a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--card-bg);
    transition: all 0.2sease;
}
.login-logo {
    display: block;
    width: 68%;
}
.login-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
body {
    padding: 15px 0;
    background-color: var(--e-global-color-primary);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
button.btn.btn-success.btn-block {
    border: none;
    position: relative;
    font-size: 16px;
    border-radius: 4px;
    box-shadow: 0 0 6px #ccc;
    background-color: var(--e-global-color-a9ba610);
    font-family: var(--e-global-typography-ca172ba-font-family), Sans-serif;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    color: #FFFFFF;
    padding: 9px 33px;
    cursor: pointer;
    display: inline;
    margin: 15px 0 0;
}
button.btn.btn-success.btn-block:hover {
    background-color: #FF9933;
    box-shadow: 0 0 8px #bbb;
}
