/* Form wrapper */
.login-form-3d {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Main 3D card */
.login-card-3d {
    margin-top: 40px;
    width: 560px;
    padding: 35px 30px 30px;
    background: #e9eef3;
    border-radius: 25px;
    box-shadow:
        20px 20px 40px rgba(195, 194, 194, 0.94),
        -20px -20px 40px rgba(199, 197, 197, 0.782);
    text-align: center;
}

/* Profile image */
.profile-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow:
        6px 6px 12px rgba(0, 0, 0, 0.25),
        -6px -6px 12px rgba(255, 255, 255, 0.9);
}

/* Title */
.login-card-3d h2 {
    margin: 10px 0 4px;
    color: #222;
}

.subtitle {
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

/* 3D input wrapper */
.input-3d {
    display: flex;
    align-items: center;
    background: #eef2f6;
    border-radius: 30px;
    padding: 12px 16px;
    margin-bottom: 18px;
    box-shadow:
        inset 6px 6px 10px rgba(0, 0, 0, 0.2),
        inset -6px -6px 10px rgba(255, 255, 255, 0.9);
}

.input-3d .icon {
    margin-right: 10px;
    font-size: 16px;
}

.input-3d input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 14px;
}

/* Login button */
/* 3D Login Button */
.login-btn-3d {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: #45b3c7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;

    /* 3D depth */
    box-shadow:
        0 8px 0 #3691a3,
        0 14px 22px rgba(0, 0, 0, 0.3);

    transition: all 0.15s ease;
}

/* Press / Click effect */
.login-btn-3d:active {
    transform: translateY(4px);
    box-shadow:
        0 3px 0 #3691a3,
        0 6px 14px rgba(0, 0, 0, 0.35);
}


/* Links */
.login-links {
    margin-top: 18px;
    font-size: 13px;
}

.login-links a {
    text-decoration: none;
    color: #333;
}

.login-links span {
    margin: 0 5px;
}
