.vp124-fullpage-wrapper {
    width: 100%;
    display: flow-root;
    background-color: #f8f9fa;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    padding-bottom: 40px; 
    margin: 0;
}
#vp124_admission_form {
    margin-bottom: 0;
}

:root {
    --neu-red: #c41230;
    --lbu-purple: #5b318d;
    --text-main: #2d3436;
    --border-color: #dfe6e9;
}

.vp124-hero-banner {
    position: relative;
    background: linear-gradient(135deg, var(--neu-red) 0%, var(--lbu-purple) 100%);
    padding: 100px 20px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.vp124-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.05)"/></svg>');
}

.vp124-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.vp124-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.vp124-logo {
    width: 80px; height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.neu-logo { color: var(--neu-red); }
.lbu-logo { color: var(--lbu-purple); }
.vp124-logo-divider { font-size: 20px; opacity: 0.7; }

.vp124-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}
.vp124-hero-sub {
    font-size: 18px;
    opacity: 0.9;
}

.vp124-form-container {
    max-width: 1000px;
    margin: -40px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.vp124-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 4px solid var(--lbu-purple);
}

.vp124-card:nth-child(even) { border-top-color: var(--neu-red); }

.vp124-card-title {
    font-size: 22px;
    color: var(--lbu-purple);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 700;
}
.vp124-card:nth-child(even) .vp124-card-title { color: var(--neu-red); }

.vp124-sub-title {
    font-size: 16px;
    color: #636e72;
    margin: 20px 0 15px;
    font-style: italic;
}

.vp124-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vp124-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.vp124-span-2 { grid-column: span 2; }
.vp124-span-3 { grid-column: span 3; }

.vp124-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.vp124-group input, .vp124-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    background: #fdfdfd;
    transition: all 0.3s;
    box-sizing: border-box;
}

.vp124-group input:focus, .vp124-group select:focus {
    border-color: var(--lbu-purple);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(91, 49, 141, 0.1);
}

.vp124-group-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px dashed #b2bec3;
}
.vp124-group-box h3 { margin-top: 0; font-size: 16px; color: var(--text-main); margin-bottom: 15px; }

.vp124-submit-area { text-align: center; margin-top: 40px; }
.vp124-submit-area p { color: #636e72; font-size: 14px; margin-bottom: 20px; }
.vp124-btn-submit {
    background: linear-gradient(135deg, var(--neu-red) 0%, var(--lbu-purple) 100%);
    color: white;
    font-size: 20px;
    font-weight: bold;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(196, 18, 48, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vp124-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(91, 49, 141, 0.4);
}

.vp124-alert-success { background: #d4edda; color: #155724; padding: 20px; border-radius: 8px; margin-bottom: 30px; border: 1px solid #c3e6cb; text-align: center; font-size: 18px; }

@media(max-width: 768px) {
    .vp124-grid-3, .vp124-grid-2 { grid-template-columns: 1fr; }
    .vp124-span-2, .vp124-span-3 { grid-column: span 1; }
    .vp124-hero-content h1 { font-size: 28px; }
    .vp124-card { padding: 20px; }
}

.vp124-layout-normal {
    background-color: transparent !important;
    padding-bottom: 0;
    box-shadow: none; 
}

.vp124-layout-normal .vp124-form-container {
    margin-top: -40px; 
}


.vp124-layout-landing {

}