
/* ======================= AJUSTES GERAIS DO TEMA ======================= */

body.somp3top-body {
    background: #ffffff !important;
    /* Fundo BRANCO em todo o site */
}

/* Hover mais forte no menu */
.somp3top-menu a:hover {
    color: #ff6a2a;
}

/* Ajustar botão Entrar do header */
.login-btn {
    background: #ff4a00;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none;
}

/* Ajustar botão de login */
.entrar-btn {
    background: #222;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
}
/* ======================= LOGIN PAGE ======================= */
/* Página inteira continua BRANCA */
.somp3top-login-background {
    background: #ffffff !important;
    /* fundo branco atrás do card */
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container central */
.somp3top-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Card de login */
.somp3top-login-card {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Título */
.login-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    color: #111;
    font-weight: 700;
}

/* Inputs */
.login-input {
    width: 100%;
    background: #f2f2f2;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
}

.login-input:focus {
    outline: 2px solid #ff4a00;
    background: #fff;
}

/* Botão */
.login-btn-submit {
    width: 100%;
    background: #ff4a00;
    color: #fff !important;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.login-btn-submit:hover {
    background: #ff6a2a;
}

/* Links abaixo do botão */
.login-links {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
}

.login-links a {
    color: #ff4a00;
    text-decoration: none;
}

.login-links span {
    margin: 0 6px;
    color: #999;
}

/* Alertas */
.login-alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.login-alert.error {
    background: #c62828;
}

.login-alert.success {
    background: #2e7d32;
}

/* Captcha */
.login-captcha {
    margin-bottom: 15px;
    text-align: center;
}
/* ======================= EFEITO AO CLICAR NO BOTÃO LOGIN ======================= */

/* Animação suave */
.login-btn-submit {
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, background 0.2s ease;
}

/* Efeito de "pressionar" */
.login-btn-submit:active {
    transform: scale(0.96);
}

/* Ripple effect (onda ao clicar) */
.login-btn-submit::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.6s ease;
}

.login-btn-submit:active::after {
    transform: scale(2.5);
    opacity: 1;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) scale(0.2);
}
/* ==========================================================
   SOMP3TOP — CSS LIMPO (LOGIN + REGISTER)
   ----------------------------------------------------------
   - Não altera o layout global
   - Não altera HEADER nem FOOTER
   - Somente estiliza login/register
   ========================================================== */


/* -------------------------
   ÁREAS DE FUNDO
   ------------------------- */

.somp3top-login-background,
.somp3top-register-background {
    background: #ffffff !important;
    padding: 80px 0;
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* -------------------------
   CONTAINERS (CARD)
   ------------------------- */

.somp3top-login-card,
.somp3top-register-container {
    background: #ffffff;
    width: 100%;
    max-width: 420px;
    padding: 40px 35px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Register é um pouco maior */
.somp3top-register-container {
    max-width: 480px;
}


/* -------------------------
   TÍTULOS
   ------------------------- */

.login-title,
.register-title {
    text-align: center;
    margin-bottom: 25px;
    font-size: 26px;
    color: #111;
    font-weight: 700;
}


/* -------------------------
   INPUTS
   ------------------------- */

.login-input,
.register-input {
    width: 100%;
    background: #f2f2f2;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: 0.2s ease;
}

.login-input:focus,
.register-input:focus {
    outline: 2px solid #ff4a00;
    background: #fff;
}


/* -------------------------
   BOTÕES PRINCIPAIS
   ------------------------- */

.login-btn-submit,
.register-btn {
    width: 100%;
    background: #ff4a00;
    color: #fff !important;
    padding: 14px 0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.1s ease, background 0.2s ease;
}

/* Hover */
.login-btn-submit:hover,
.register-btn:hover {
    background: #ff6a2a;
}

/* Clique (efeito pressionado) */
.login-btn-submit:active,
.register-btn:active {
    transform: scale(0.96);
}

/* Ripple effect */
.login-btn-submit::after,
.register-btn::after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.6s ease;
}

.login-btn-submit:active::after,
.register-btn:active::after {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 1;
    top: 50%;
    left: 50%;
}


/* -------------------------
   LINKS DE AÇÃO
   ------------------------- */

.login-links,
.register-links {
    margin-top: 18px;
    text-align: center;
    font-size: 14px;
}

.login-links a,
.register-links a {
    color: #ff4a00;
    text-decoration: none;
}

.login-links span,
.register-links span {
    margin: 0 6px;
    color: #999;
}


/* -------------------------
   ALERTAS
   ------------------------- */

.login-alert,
.register-alert {
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.login-alert.error,
.register-alert.error {
    background: #c62828;
}

.login-alert.success,
.register-alert.success {
    background: #2e7d32;
}


/* -------------------------
   CAPTCHA
   ------------------------- */

.login-captcha,
.register-captcha {
    margin-bottom: 15px;
    text-align: center;
}


/* -------------------------
   AJUSTES DO HEADER
   (apenas botão ENTRAR do topo)
   ------------------------- */

.login-btn,
.entrar-btn {
    background: #ff4a00;
    padding: 8px 14px;
    border-radius: 6px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
}

.login-btn:hover,
.entrar-btn:hover {
    background: #ff6a2a;
}
/* ==============================
   FORGOT PASSWORD PAGE – SOMP3TOP
   ============================== */

/* Fundo branco e centralização */
.height-80.text-center {
    background: #ffffff;
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card central */
.container.pos-vertical-center .row .col-md-7.col-lg-5 {
    background: #fff;
    padding: 40px 35px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin: auto;
}

/* Título */
.container.pos-vertical-center h2 {
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

/* Texto informativo */
.container.pos-vertical-center p {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
}

/* Campo de texto */
#emailAddress {
    width: 100%;
    background: #f2f2f2;
    border: none;
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 15px;
    outline: none;
}

#emailAddress:focus {
    outline: 2px solid #ff4a00;
    background: #fff;
}

/* Botão laranja */
.btn.btn--primary.type--uppercase {
    width: 100%;
    background: #ff4a00 !important;
    color: #fff !important;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.btn.btn--primary.type--uppercase:hover {
    background: #ff6a2a !important;
}

/* Links abaixo do botão */
.type--fine-print.block {
    display: block;
    margin-top: 18px;
    font-size: 14px;
}

.type--fine-print.block a {
    color: #ff4a00;
    text-decoration: none;
}

.type--fine-print.block a:hover {
    text-decoration: underline;
}

/* Alertas */
.alert.bg--error {
    background: #c62828 !important;
    border-radius: 6px;
    color: #fff;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 14px;
}
.somp3top-header-btn {
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.studio-btn {
    background: #ff4a00;
    color: #fff !important;
}

.studio-btn:hover {
    background: #e84300;
}

.entrar-btn {
    background: #ff4a00;
    color: #fff !important;
}

.entrar-btn:hover {
    background: #e84300;
}
/* ===============================
   CRIAR ÁLBUM — ESTILO OFICIAL
   Somp3Top Studio
================================ */

/* Cores principais */
:root {
    --studio-orange: #ff7b00;
    --studio-dark: #1a1a1a;
    --studio-gray: #6e6e6e;
    --studio-light: #f8f8f8;
    --studio-border: #e5e5e5;
}

/* Título da página */
.page-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Formulário */
.album-form {
    background: #fff;
    border: 1px solid var(--studio-border);
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

/* ===========================
   CAPA DO ÁLBUM
=========================== */
.cover-upload-box {
    width: 100%;
    height: 260px;
    background: #f0f0f0;
    border-radius: 12px;
    border: 1px solid var(--studio-border);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.album-cover-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: 0.3s ease;
}

.cover-upload-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.cover-upload-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.cover-upload-btn input {
    display: none;
}

/* ===========================
   FORM FIELDS
=========================== */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--studio-border);
    background: var(--studio-light);
    font-size: 15px;
    transition: 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--studio-orange);
    background: #fff;
}

/* ===========================
   SLUG PERSONALIZADO
=========================== */
.slug-field {
    display: flex;
    align-items: center;
    background: var(--studio-light);
    border: 1px solid var(--studio-border);
    border-radius: 10px;
    padding: 12px;
}

.slug-base {
    font-weight: 600;
    color: var(--studio-gray);
    margin-right: 6px;
}

#slugField {
    border: none;
    background: transparent;
    padding: 0;
    font-size: 15px;
}

.slug-tip {
    display: block;
    padding-top: 6px;
    color: var(--studio-gray);
    font-size: 13px;
}

/* ===========================
   BOTÃO SALVAR
=========================== */
.btn-big-orange {
    padding: 14px 26px;
    background: var(--studio-orange);
    color: #fff;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.2s;
    margin-top: 10px;
}

.btn-big-orange:hover {
    opacity: 0.9;
}

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 780px) {
    .album-form {
        padding: 22px;
    }

    .cover-upload-box {
        height: 200px;
    }

    .page-title {
        font-size: 22px;
    }
}
.album-cover-section {
    display: flex;
    gap: 40px;
    margin: 30px 0;
    align-items: flex-start;
}

.cover-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cover-info p {
    font-size: 14px;
    color: #444;
    max-width: 250px;
}

.cover-tip {
    display: block;
    font-size: 12px;
    color: #777;
    margin-top: 5px;
}

/* ÁREA QUADRADA */
.cover-upload-wrapper {
    width: 250px;
    height: 250px;
}

.cover-drop-area {
    width: 100%;
    height: 100%;
    border: 2px dashed #00a347;
    border-radius: 8px;
    background: #fdfdfd;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .2s;
}

.cover-drop-area.drag-over {
    background: #e9f9ef;
    border-color: #00d05b;
}

.cover-inner {
    text-align: center;
    color: #00994f;
    font-weight: 600;
    font-size: 14px;
}

.cover-upload-icon {
    width: 48px;
    opacity: .7;
    margin-bottom: 10px;
}

.cover-preview {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}