/* Authentication View Layout Specifics */
.view-screen-auth {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.coslife-form-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 420px;
    box-sizing: border-box;
}

.brand-header {
    text-align: center;
    margin-bottom: 30px;
}

.hub-title {
    font-size: 28px;
    color: #2e7d32; /* Beautiful Green World Brand Match */
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hub-badge {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 20px;
    margin-top: 6px;
    font-weight: 600;
}

.coslife-form-card h2 {
    font-size: 20px;
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: 600;
}

/* UI Structure Elements */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 15px;
    color: #2d3748;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
}

/* Action Mechanics */
.btn-submit {
    position: relative;
    width: 100%;
    padding: 14px;
    background: #2e7d32;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit:hover {
    background: #1b5e20;
}

.btn-submit:disabled {
    background: #a5d6a7;
    cursor: not-allowed;
}

/* Alert Boxes */
.auth-alert-box {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.alert-danger {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

.form-toggle-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #718096;
}

.btn-link {
    background: none;
    border: none;
    color: #2e7d32;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

/* Simple Micro-Animations */
.animate-fade-in {
    animation: fadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hidden { display: none !important; }