:root {
    --brand-accent: #36D2A8;
    --brand-dark: #2D3246;
    --text-muted: #8E96AB;
    --font-family: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    background-color: var(--brand-dark);
}

.recovery-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}

/* PAINEL ESQUERDO */
.panel-left {
    flex: 1;
    background: var(--brand-accent);
    color: white;
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    overflow: hidden;
}
@media (min-width: 992px) {
    .panel-left {
        display: flex;
    }
}

.panel-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -1px;
    width: 35px;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 100' preserveAspectRatio='none'%3E%3Cpath d='M30,0 C5,25 5,75 30,100 Z' fill='%232D3246'/%3E%3C/svg%3E");
    background-size: 100% 120px;
    z-index: 10;
}

.mascot-img {
    width: 180px;
    margin-bottom: 20px;
    z-index: 2;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
    animation: floatMascot 4s ease-in-out infinite;
}
@keyframes floatMascot {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.panel-left h3 {
    font-weight: 400;
    font-size: 2rem;
    z-index: 2;
    line-height: 1.4;
}

/* FOLHAS ANIMADAS */
.leaves-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.leaf-icon {
    position: absolute;
    display: block;
    color: rgba(255, 255, 255, 0.4);
    animation: floatLeaf 12s linear infinite;
    bottom: -50px;
}
.leaf-icon:nth-child(1) {
    left: 15%;
    font-size: 30px;
    animation-duration: 10s;
}
.leaf-icon:nth-child(2) {
    left: 45%;
    font-size: 40px;
    animation-delay: 4s;
}

@keyframes floatLeaf {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    100% {
        transform: translateY(-110vh) rotate(360deg);
        opacity: 0;
    }
}

/* PAINEL DIREITO */
.panel-right {
    flex: 1;
    padding: 5% 10%;
    background: var(--brand-dark);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.friendly-header {
    margin-bottom: 40px;
}
.friendly-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.friendly-header p {
    color: var(--text-muted);
    line-height: 1.6;
}

.custom-form-group {
    margin-bottom: 30px;
}
.custom-form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.custom-form-group .form-control {
    background: transparent;
    border: none;
    border-bottom: 1px solid #454D66;
    border-radius: 0;
    padding: 10px 0;
    color: white;
    box-shadow: none !important;
    transition: border-color 0.3s;
}

.custom-form-group .form-control::placeholder {
    color: var(--text-muted) !important;
    opacity: 1;
}

.custom-form-group .form-control:focus {
    border-bottom-color: var(--brand-accent);
}

.btn-brand-pill {
    background-color: var(--brand-accent);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 40px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(54, 210, 168, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}
.btn-brand-pill:hover {
    background-color: #2ebc95;
    transform: translateY(-2px);
}

.footer-links {
    margin-top: 30px;
    text-align: center;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
}
.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.alert-custom {
    background: rgba(54, 210, 168, 0.1);
    border: 1px solid var(--brand-accent);
    color: var(--brand-accent);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}