body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('../../assets/images/shake.jpg');
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-position:center;
}
.backgroundimgopacity {
    background: linear-gradient(to bottom, #9b59b69e, #6b4c9b);
    height: 100vh;
    width: 100%;
    opacity: 0.4;
    position: absolute;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%"><filter id="blur"><feGaussianBlur stdDeviation="20" /></filter><rect width="100%" height="100%" fill="white" filter="url(#blur)" opacity="0.05" /></svg>'); /* Even softer blur overlay */
    pointer-events: none;
    z-index: 1;
}

.login-container {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 40px 40px 51px 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 380px;
    max-width: 90%;
    position: relative;
    z-index: 2;
}

.logo {
    border-radius: 23px;
    width: 300px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    -webkit-backdrop-filter: blur(6px);
    overflow: hidden;
    padding: 5px 0;
}

.logo img {
    max-width: 80%;
    /* max-height: 80%;  */
    object-fit: contain;
}

h2 {
    font-size: 24px;
    color: #000;
    margin-bottom: 10px;
}

p {
    font-size: 14px;
    color: #000; 
    margin-bottom: 30px;
    line-height: 1.5;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group input {
    width: calc(95% - 40px);
    padding: 12px 15px 12px 40px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    color: #444;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    outline: none;
    border: 1px solid #c7c7c7;
}

.input-group input::placeholder {
    color: #999;
}

.input-group input:focus {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 2px rgba(170, 200, 255, 0.5);
}

.input-group .fa-solid {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #333;
    font-size: 18px;
    z-index: 999;
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    color: #000; 
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password a:hover {
    color: #5B8C85;
}

button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #555;
}

.or-sign-in-with {
    margin: 25px 0;
    font-size: 14px;
    color: #000; 
    position: relative;
}

.or-sign-in-with::before,
.or-sign-in-with::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background-color: #DDD;
}

.or-sign-in-with::before {
    left: 0;
}

.or-sign-in-with::after {
    right: 0;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-login button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 0;
}

.social-login button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.social-login .fa-brands {
    font-size: 24px;
}

.social-login .fa-google { color: #DB4437; }
.social-login .fa-facebook-f { color: #1877F2; }
.social-login .fa-apple { color: #333; }
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: -1; /* behind content */
}