/* ===== SECTION ===== */
.admissionlogin-section{
    padding:60px 5%;
    background:#f4f6f9;
}

/* ===== CONTAINER ===== */
.admissionlogin-container{
    max-width:1200px;
    margin:auto;
}

/* ===== WARNING ===== */
.admissionlogin-top-warning{
    margin-bottom:35px;
}

.admissionlogin-warning-box{
    background:#fff3f3;
    border-left:6px solid #d62828;
    padding:15px 20px;
    border-radius:8px;
    font-weight:600;
    color:#b00020;
}

/* ===== GRID ===== */
.admissionlogin-grid{
    display:flex;
    justify-content:center; /* Center box */
}

/* ===== CARD (col-md-8 approx) ===== */
.admissionlogin-card{
    width:100%;
    max-width:800px;   /* approx col-md-8 */
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,0.12);
}

/* ===== HEADING ===== */
.admissionlogin-heading{
    text-align:center;
    margin-bottom:30px;
    font-size:22px;
    color:#14376b;
}

/* ===== FORM GROUP ===== */
.admissionlogin-group{
    margin-bottom:20px;
}

.admissionlogin-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    font-size:14px;
}

/* ===== INPUT ===== */
.admissionlogin-control{
    width:100%;
    padding:12px 14px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:14px;
    transition:0.3s;
}

.admissionlogin-control:focus{
    border-color:#14376b;
    outline:none;
    box-shadow:0 0 0 3px rgba(20,55,107,0.15);
}

/* ===== BUTTON ===== */
.admissionlogin-btn{
    width:100%;
    padding:14px;
    background:#14376b;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.admissionlogin-btn:hover{
    background:#1b4f9c;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
    .admissionlogin-card{
        padding:25px;
    }

    .admissionlogin-heading{
        font-size:18px;
    }
}

/* ===== RESULT SECTION ===== */
.admission-result-section {
    margin-top: 40px;
}

.admission-result-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-top: 4px solid #412a97;
}

/* ===== MESSAGE STYLING ===== */
.result-message {
    margin-bottom: 20px;
}

.status-success {
    color: #28a745;
    font-weight: 600;
}

.status-warning {
    color: #ff9800;
    font-weight: 600;
}

.status-info {
    color: #1976d2;
    font-weight: 600;
}

.status-error {
    color: #dc3545;
    font-weight: 600;
}

/* ===== TABLE DESIGN ===== */
.result-table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.result-table thead {
    background: #412a97;
    color: #ffffff;
}

.result-table th,
.result-table td {
    padding: 14px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.result-table tbody tr {
    background: #f9f9f9;
    transition: 0.3s;
}

.result-table tbody tr:hover {
    background: #f1f1ff;
}

/* ===== BUTTONS ===== */
.result-button-area {
    margin-top: 25px;
}

.btn-primary {
    background: #1976d2;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #0d47a1;
}

.btn-warning {
    background: #ff9800;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-warning:hover {
    background: #e68900;
}