/* Page Layout */
.entry-page { 
    min-height: calc(100vh - 140px); 
    display: flex; align-items: center; justify-content: center; 
    padding: 2rem 1.5rem; 
}

/* Entry Card */
.entry-card { 
    width: 100%; max-width: 440px; 
    background: var(--bg-card); 
    border: 1px solid var(--border); 
    border-radius: 20px; padding: 2.5rem; 
    position: relative; 
}

/* Subtle Emerald Glow Effect */
.entry-card::after {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120px; height: 1px; background: var(--emerald);
    box-shadow: 0 0 20px 2px var(--emerald); opacity: 0.3;
}

.entry-icon { 
    width: 60px; height: 60px; 
    background: var(--emerald-dim); 
    border: 1px solid var(--emerald);
    border-radius: 14px; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 1.5rem; color: var(--emerald);
    margin: 0 auto 1.5rem; 
}

.entry-title { 
    font-size: 1.75rem; font-weight: 800; 
    text-align: center; margin-bottom: 0.5rem; 
    letter-spacing: -0.02em; color: #fff;
}

.entry-sub { 
    color: var(--text-secondary); 
    text-align: center; font-size: 0.9rem; 
    margin-bottom: 2rem; line-height: 1.5; 
}

/* Form Styling Refinement */
.form-group label {
    font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--text-muted); margin-bottom: 0.5rem;
}

.form-group input {
    background: #18181b !important;
    border: 1px solid var(--border) !important;
    color: #fff !important;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: 0.2s;
}

.form-group input:focus {
    border-color: var(--emerald) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.divider { 
    height: 1px; background: var(--border); 
    margin: 2rem 0; 
}

.help-text { 
    font-size: 0.8rem; color: var(--text-muted); 
    text-align: center; margin-top: 1.5rem; line-height: 1.6; 
}

.help-text a { 
    color: var(--emerald); 
    text-decoration: none; font-weight: 600; 
}

.help-text a:hover { text-decoration: underline; }