.dgfm-auth-box,
.dgfm-dashboard,
.dgfm-profile {

    max-width: 650px;

    margin: 30px auto;

    padding: 35px;

    background: #0f172a;

    color: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 20px 50px
        rgba(0,0,0,0.20);

}


.dgfm-auth-box h2,
.dgfm-dashboard h2,
.dgfm-profile h2 {

    margin-top: 0;

}

.dgfm-google-login {
    margin-top: 20px;
}

.dgfm-google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;

    box-sizing: border-box;

    padding: 13px 18px;

    background: #ffffff;

    color: #1f2937;

    border-radius: 8px;

    text-decoration: none;

    font-weight: 600;

    border: 1px solid #d1d5db;

    transition: 0.2s ease;
}

.dgfm-google-button:hover {
    background: #f8fafc;
}

.dgfm-google-button span {
    display: flex;

    align-items: center;

    justify-content: center;

    width: 24px;

    height: 24px;

    font-weight: bold;

    font-size: 18px;
}


.dgfm-auth-box label {

    display: block;

    margin-top: 15px;

    margin-bottom: 5px;

    font-weight: 600;

}


.dgfm-auth-box input {

    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    border-radius: 8px;

    border: 1px solid #475569;

    background: #1e293b;

    color: #ffffff;

}


.dgfm-auth-box button,
.dgfm-button {

    display: inline-block;

    margin-top: 20px;

    padding: 13px 22px;

    border: none;

    border-radius: 8px;

    background: #0ea5e9;

    color: #ffffff;

    font-weight: bold;

    cursor: pointer;

    text-decoration: none;

}


.dgfm-button-secondary {

    background: #475569;

    margin-left: 10px;

}


.dgfm-form-message {

    margin-top: 15px;

    padding: 10px;

}


.dgfm-stats {

    display: grid;

    grid-template-columns:
    repeat(3, 1fr);

    gap: 15px;

    margin: 25px 0;

}


.dgfm-stat {

    background: #1e293b;

    padding: 20px;

    border-radius: 12px;

}


.dgfm-stat span {

    display: block;

    color: #94a3b8;

    margin-bottom: 8px;

}


.dgfm-stat strong {

    font-size: 20px;

}


.dgfm-progress {

    height: 10px;

    background: #334155;

    border-radius: 10px;

    overflow: hidden;

}


.dgfm-progress div {

    height: 100%;

    background: #38bdf8;

}


.dgfm-google-placeholder {

    margin-top: 20px;

    padding: 15px;

    background: #1e293b;

    border-radius: 10px;

    text-align: center;

}


.dgfm-message {

    padding: 20px;

    background: #0f172a;

    color: #ffffff;

    border-radius: 12px;

}

.dgfm-google-login {
    width: 100%;
    margin-top: 18px;
}

.dgfm-google-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    width: 100%;
    min-height: 48px;

    padding: 12px 18px;

    box-sizing: border-box;

    background: #ffffff;

    color: #1f2937;

    border: 1px solid #d1d5db;

    border-radius: 8px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    transition:
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.dgfm-google-button:hover {

    background: #f8fafc;

    color: #111827;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.08);

    transform:
        translateY(-1px);

}

.dgfm-google-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 26px;

    height: 26px;

    border-radius: 50%;

    font-size: 17px;

    font-weight: 700;

    color: #4285f4;

    background: #ffffff;

}

.dgfm-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 30px 0;
}

.dgfm-plan-card {
    position: relative;
    background: #0f172a;
    color: #ffffff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.dgfm-featured {
    border: 2px solid #38bdf8;
}

.dgfm-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #38bdf8;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.dgfm-price {
    font-size: 30px;
    font-weight: 800;
    margin: 18px 0;
}

.dgfm-price small {
    font-size: 14px;
    font-weight: 400;
}

.dgfm-plan-button {
    width: 100%;
    margin-top: 18px;
    border: 0;
    border-radius: 10px;
    padding: 13px 18px;
    background: #0ea5e9;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.dgfm-plan-button:disabled {
    cursor: not-allowed;
    opacity: .55;
}

.dgfm-payment-message {
    margin: 18px 0;
    font-weight: 600;
}

.dgfm-button-planos {
    background: #7c3aed;
    margin-left: 10px;
}

.dgfm-button-planos:hover {
    background: #6d28d9;
}

@media (max-width: 700px) {

    .dgfm-button-planos {
        margin-left: 0;
        margin-top: 10px;
    }

}

@media (max-width: 800px) {

    .dgfm-plans {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 700px) {

    .dgfm-stats {

        grid-template-columns: 1fr;

    }

    .dgfm-button-secondary {

        margin-left: 0;

    }

}