* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    overflow-x: hidden;
}

.lyu-main-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.55)),
    url('../img/bg.jpg');
    background-size: cover;
    background-position: center;
}

.lyu-logo-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.lyu-logo-box img {
    max-width: 90px;
    background: #fff;
    border-radius: 50%;
    padding: 5px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.lyu-university-name {
    color: #fff;
}

.lyu-university-name h1 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 5px;
}

.lyu-university-name p {
    font-size: 14px;
    margin: 0;
    color: #f1f1f1;
}

.lyu-highlight-badge {
    display: inline-block;
    background: #b7061a;
    color: #FFFFFF;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 15px;
}

.lyu-main-title {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.lyu-main-title span {
    color: #f4bd3f;
}

.lyu-description {
    color: #ededed;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.lyu-feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.lyu-feature-item {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    font-size: 14px;
    font-weight: 500;
}

.lyu-feature-item i {
    color: #f4bd3f;
    margin-right: 8px;
}

.lyu-form-card {
    background: #fff;
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.lyu-form-title {
    font-size: 28px;
    font-weight: 700;
    color: #b7061a;
    margin-bottom: 5px;
}

.lyu-form-subtitle {
    color: #666;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-control,
.form-select {
    height: 54px;
    border-radius: 12px;
    border: 1px solid #d9d9d9;
    padding-left: 15px;
    font-size: 15px;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: #b7061a;
}

.lyu-submit-btn {
    background: linear-gradient(45deg, #003570, #00519b);
    color: #fff;
    border: none;
    width: 100%;
    height: 56px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.lyu-submit-btn:hover {
    background: linear-gradient(45deg, #b7061a, #fc2443);
    transform: translateY(-2px);
}

.lyu-counter-box {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.lyu-counter-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 18px 22px;
    border-radius: 16px;
    min-width: 140px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.lyu-counter-item h3 {
    color: #f4bd3f;
    font-size: 28px;
    margin-bottom: 5px;
    font-weight: 700;
}

.lyu-counter-item p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991px) {
    .lyu-main-section {
        padding: 50px 0;
    }

    .lyu-main-title {
        font-size: 42px;
    }

    .lyu-form-card {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .lyu-logo-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .lyu-main-title {
        font-size: 34px;
    }

    .lyu-description {
        font-size: 15px;
    }

    .lyu-form-card {
        padding: 25px;
    }

    .lyu-university-name h1 {
        font-size: 28px;
    }

    .lyu-counter-box {
        gap: 12px;
    }

    .lyu-counter-item {
        width: calc(50% - 6px);
        min-width: auto;
    }
}

/* Register Button */

.lyu-register-btn {
    background: linear-gradient(45deg, #b7061a, #fc2443);
    color: #ffffff !important;
    border: none;
    width: 100%;
    height: 56px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
}

.lyu-register-btn:hover {
    background: linear-gradient(45deg, #003570, #00519b);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Forgot Password Link */

.lyu-forgot-link {
    color: #003570 !important;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.lyu-forgot-link:hover {
    color: #b7061a !important;
}