.custom-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background:
        linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 20px;
}

.custom-login-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.custom-login-box h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}

.custom-login-box .subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 35px;
}

#custom-login-form p {
    margin-bottom: 20px;
}

#custom-login-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
}

#custom-login-form input[type="text"],
#custom-login-form input[type="password"] {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 16px;
    transition: 0.3s ease;
    box-sizing: border-box;
}

#custom-login-form input[type="text"]:focus,
#custom-login-form input[type="password"]:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

.login-remember {
    display: flex;
    align-items: center;
    gap: 10px;
}

#wp-submit {
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 12px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

#wp-submit:hover {
    background: #1d4ed8;
}

.custom-login-links {
    text-align: center;
    margin-top: 25px;
}

.custom-login-links a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.custom-login-links a:hover {
    text-decoration: underline;
}

.login-error,
.login-success {
    padding: 14px 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.login-error {
    background: #fee2e2;
    color: #b91c1c;
}

.login-success {
    background: #dcfce7;
    color: #166534;
}

/*****************************************
 *
 ************************************** */
.projects-carousel-wrap {
    position: relative;
    max-width: 1400px;
    margin: 80px auto;
    padding: 40px 100px 100px;
}

/* allow side cards to show */
.projects-swiper {
    overflow: visible;
}

.swiper-slide {
    transition: all .4s ease;
}

.project-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.08);

    transition: all .4s ease;

    transform: scale(.82);

    opacity: .55;
}

.swiper-slide-active .project-card {

    transform: scale(1);

    opacity: 1;

    z-index: 20;
}

/* image */

.project-image {
    height: 260px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* content */

.project-content {
    padding: 28px;
}

.project-content h3 {
    margin: 0 0 15px;
    line-height: 1.3;
}

.project-content h3 a {

    text-decoration: none;

    color: #333;

    font-size: 32px;

    font-weight: 700;
}

.project-date {

    color: #777;

    font-size: 15px;
}

/* arrows */

.carousel-prev,
.carousel-next {

    width: 70px;

    height: 70px;

    background: #fff;

    border: 2px solid #3a9c59;

    border-radius: 8px;

    position: absolute;

    top: 42%;

    transform: translateY(-50%);

    z-index: 50;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    color: #3a9c59;

    font-size: 30px;
}

.carousel-prev {
    left: 15%;
}

.carousel-next {
    right: 15%;
}

/* pagination */

.swiper-pagination {

    position: relative !important;

    margin-top: 70px;
}

.swiper-pagination-bullet {

    width: 70px;

    height: 8px;

    border-radius: 4px;

    background: #e8e8e8;

    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #3a9c59;
}