@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    padding: 2rem;
    background: linear-gradient(135deg, #e8f5ee 0%, #f5f0ff 50%, #e6f3fb 100%);
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}
.blob-1 { width: 300px; height: 300px; background: #9FE1CB; top: -80px; left: -60px; }
.blob-2 { width: 250px; height: 250px; background: #CECBF6; bottom: -60px; right: -40px; }
.blob-3 { width: 180px; height: 180px; background: #B5D4F4; top: 40%; left: 10%; }

.container {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 0.5px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(31, 100, 70, 0.08), 0 2px 8px rgba(0,0,0,0.04);
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.icon-wrap {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #103778, #0593A2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 16px rgba(29, 158, 117, 0.3);
}

.icon-wrap i {
    color: white;
    font-size: 1.3rem;
}

.container h2 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #0F2D1F;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 0.82rem;
    color: #5A7D6C;
    margin-bottom: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
}

.input-group {
    margin-bottom: 1.25rem;
}

.input-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: #3B6D50;
    margin-bottom: 0.4rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 14px;
    color: #9FE1CB;
    font-size: 0.85rem;
    pointer-events: none;
    transition: color 0.2s;
}

.input-wrap:focus-within .field-icon {
    color: #1D9E75;
}

.input-wrap input {
    width: 100%;
    padding: 0.72rem 1rem 0.72rem 2.8rem;
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    color: #1a2e25;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #C0DCC8;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.input-wrap input:focus {
    border-color: #1D9E75;
    box-shadow: 0 0 0 3px rgba(29, 158, 117, 0.12);
}

.btn {
    width: 100%;
    padding: 0.85rem;
    background: linear-gradient(135deg, #103778);
    color: white;
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 14px rgba(29, 158, 117, 0.35);
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.65rem;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(29, 158, 117, 0.4);
}

.btn:active {
    transform: scale(0.98);
}

.btn-voltar {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: transparent;
    color: #103778;
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid #C0DCC8;
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    letter-spacing: 0.2px;
}

.btn-voltar:hover {
    background: rgba(29, 158, 117, 0.06);
    border-color: #9FE1CB;
}