
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rubik', sans-serif;
    background: linear-gradient(135deg, #1E1B2E, #000000);
    color: #fff;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.wrapper {
    width: 100%;
    max-width: 500px;
    margin: auto;
}

.container {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 255, 155, 0.2);
    text-align: center;
}

h1, h2 {
    margin-bottom: 20px;
    color: #00E676;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

input[type="text"],
input[type="password"],
button {
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 10px;
}

input[type="text"],
input[type="password"] {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border: 1px solid #00E676;
}

button {
    background-color: #00E676;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #10A37F;
    color: #fff;
}

.action-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.logout-button,
.new-consultation-button {
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    border: none;
}

.logout-button {
    background-color: #e74c3c;
    color: white;
}

.new-consultation-button {
    background-color: #00E676;
    color: #000;
}

.logout-button:hover {
    background-color: #c0392b;
}

.new-consultation-button:hover {
    background-color: #8E24AA;
    color: #fff;
}

.email-info ul {
    list-style-type: none;
    padding: 0;
}

.email-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: left;
}

.email-details {
    font-size: 14px;
    color: white;
}

.email-details a {
    color: white;
    text-decoration: none;
}
.email-details a:hover {
    text-decoration: underline;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-top: 5px;
}

.badge.amazon {
    background-color: #FF9900;
    color: #000;
}
.badge.spotify {
    background-color: #1DB954;
    color: #fff;
}
.badge.apple {
    background-color: #A2AAAD;
    color: #000;
}
.badge.chatgpt {
    background-color: #10A37F;
    color: #fff;
}
.badge.disney {
    background-color: #113CCF;
    color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
    .wrapper, .container {
        width: 90%;
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logout-button,
    .new-consultation-button {
        width: 100%;
        max-width: 320px;
    }

    input, button {
        font-size: 18px;
    }
}
button i,
a.button i {
    margin-right: 6px;
}
.email-content,
.email-content * {
    color: #ffffff !important;
    font-weight: 400;
    text-shadow: 0 0 3px rgba(0,0,0,0.6); /* Mejora la visibilidad sobre fondos oscuros */
}


