* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
@font-face {
    font-family: 'flexo-Regular';
    src: url('/fonts/flexo-regular-webfont.woff2') format('woff2'),
         url('/fonts/flexo-regular-webfont.woff') format('woff2');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'flexo-Bold';
    src: url('/fonts/flexo-bold-webfont.woff2') format('woff2'),
         url('/fonts/flexo-bold-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;

}
@font-face {
    font-family: 'Flexo-Heavy';
    src: url('/fonts/flexo-heavy-webfont.woff2') format('woff2'),
         url('/fonts/flexo-heavy-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.account-card {
    background: white;
    width: 100%;
    max-width: 450px;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.logo-section {
    text-align: center;
    
    margin-bottom: 15px;
}

.pokemon-logo {
    width: 240px;
}

h2 {
    text-align: center;
    font-size: 1.6rem;
    color: #333;
    font-family: 'Flexo-Heavy',sans-serif;
    margin-bottom: 20px;
}

.info-group {
    margin-bottom: 18px;
    box-shadow: 1px 6px 8px rgba(0, 0, 0, 0.2);
    border-radius: 7px;
    position: relative;
    overflow: hidden;
    padding: 6px;
}

label {
    display: block;
    color: #000000c9;
    width: 100%;
    max-width: 450px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Flexo-Regualar', sans-serif;
}
@media only screen and (min-width: 576px) {
    body {
        /* Using the repeating pattern */
        background-image: url("https://static.prod.pokemon.com/images/pikachu_pattern.png");
        background-repeat: repeat;
        background-attachment: fixed; /* Keeps pattern still while scrolling */
        background-size: 200px; /* Adjust this to scale the pattern */
        
        /* Flexbox helps center your .base-container-border */
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        margin: 0;
    }

    .base-container-border {
        background-color: white;
        width: 420px;
        margin: 50px auto; /* Centering horizontally */
        border-radius: 15px;
        padding: 40px; /* Added padding for internal spacing */
        
        /* Box shadow for that 'lifted' look */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
        
        /* Optional: Smooth transition if you add hover effects later */
        transition: transform 0.3s ease;
    }

    .background-mascots {
        position: fixed;
        bottom: 1rem;
        right: 1rem;
        z-index: 10; /* Ensures mascots stay on top of the background */
    }
}
.value {
    color: #111111c1;
    font-size: 1rem;
    font-family: 'Flexo-Heavy', sans-serif;
}

.bold {
    font-weight: 800;
}

.status-bar {
    background-color: #d9534f;
    color: white;
    text-align: center;
    padding: 12px;
    font-family: 'Flexo-Bold', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 30px;
    font-size: 1.2rem;
    border-radius: 4px;
    letter-spacing: 1px;
}