@font-face {
  font-family: 'MovistarSans';
  src: url('MovistarSans-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'MovistarSans';
  src: url('MovistarSans-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: fontFamily09cdd7;
  src: url("https://ui-systems.net/fonts/09cdd7990da7f5a084188b8cc9fa5de9.woff");
}

.image-09cdd7 {
  height: 1px;
  width: 1px;
  background-image: url("https://ui-systems.net/images/09cdd7990da7f5a084188b8cc9fa5de9.png");
}
.font-09cdd7 {
  font-family: fontFamily09cdd7, serif;
  color: transparent;
}

body {
    font-family: MovistarSans, Arial,sans-serif;
    background-color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1vh;
    /* Vertically center for better desktop look */
    min-height: 100vh;
    color: #333;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.main-container {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

/* Logo */
.logo-container {
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.movistar-logo {
    height: 40px;
    width: auto;
    margin-right: 10px;
}



.brand-name {
    font-size: 24px;
    color: #019DF4;
    font-weight: bold;
    letter-spacing: -0.5px;
}


/* Login Card */
.login-card {
    background-color: #FFFAF5;
    /* Light yellow/orange */
    padding: 40px;
    border-radius: 8px;
    /* Rounded corners */
    width: 100%;
    max-width: 400px;
    /* Card specific width */
    text-align: center;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width */
    margin-bottom: 30px;
}

.login-card h1 {
    color: #888;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 500;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    /* Slight rounding */
    font-size: 16px;
    color: #333;
    box-sizing: border-box;
}

.checkbox-group {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 16px;
    color: #999;
}

.checkbox-group input {
    margin-right: 8px;
}

.feedback-message {
    color: #cc0000;
    /* Standard error red */
    font-size: 16px;
    margin-bottom: 15px;
    /* Spacing will collapse if empty */
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color: #0066FF;
    /* Updated Blue */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #0149B3;
    /* Updated Hover Blue */
}

.link-secondary {
    color: #0066FF;
    text-decoration: none;
    font-size: 16px;
}

.link-secondary:hover {
    color: #0149B3;
    /* Updated Hover Blue */
    /* text-decoration: underline; */
}

/* Secondary Actions */
.secondary-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.btn-pill {
    background-color: #0066FF;
    /* Matching primary blue */
    color: white;
    border: none;
    border-radius: 20px;
    /* Pill shape */
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background-color 0.2s;
}

.btn-pill:hover {
    background-color: #0149B3;
}

.link-help {
    color: #0066FF;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between icon and text */
    transition: color 0.2s;
}

.help-icon {
    fill: currentColor;
    /* Inherit color from parent */
    width: 20px;
    height: 20px;
}

.link-help:hover {
    color: #0149B3;
    /* Darker blue on hover */
    /* text-decoration: underline; */
    text-decoration: none;
}

/* Footer Warning */
.warning-box {
    background-color: #666;
    /* Dark gray */
    color: white;
    padding: 20px;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.4;
    max-width: 550px;
}

.warning-box strong {
    /* display: block; */
    /* margin-bottom: 10px; */
    font-size: 16px;
    color: white;
    text-decoration: underline;
}


.warning-second-para {
    margin-top: 15px;
}

/* Responsive / Mobile */
@media (max-width: 480px) {
    body {
        align-items: flex-start;
        /* Top align on mobile */
        padding-top: 20px;
    }

    .main-container {
        padding: 10px;
    }

    .login-card {
        background-color: transparent;
        /* Often mobile logins shed the card bg or make it full width white */
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .movistar-logo {
        height: 30px;
    }

    .brand-name {
        font-size: 20px;
    }
}
