
*{
    box-sizing: border-box;
}
body {
    margin: 0;
    height: 100vh;
    font-family: "Inter", sans-serif;
    background: url(../../assets/images/young-woman-pharmacist-pharmacy.jpg) center bottom/cover no-repeat;
    position: relative;
    overflow: hidden;
}
body::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .70));
    backdrop-filter: blur(7px);
}
.wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
}
.brand-box {
    text-align: center;
    margin-bottom: 20px;
}
.brand-box img {
    width: 120px;
}
.brand-title {
    margin-top: 10px;
    font-size: 24px;
    font-weight: 800;
    color: #0d3c6e;
}
.brand-title span {
    color: #e13034;
    border-bottom: 3px solid #e13034;
}
.login-grid {
    width: 100%;
    max-width: 1050px;
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 0 10px;
}

.login-card {
    padding: 25px 15px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #efefef);
    border: 1px solid #d6e4ff;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.login-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 80, 180, 0.25);
    background: linear-gradient(135deg, #eef5ff, #d8e7ff);
}
.icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 5px 12px rgba(0, 60, 140, 0.20);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 12px;
    color: #e13034
}
.login-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0d3c6e;
}
.login-card p {
    font-size: 12px;
    color: #56606e;
    margin: 0;
}
.arrow {
    margin-top: 10px;
    font-size: 20px;
    color: #e13034;
    opacity: .6;
    transition: .3s;
}
.login-card:hover .arrow {
    transform: translateX(5px);
    opacity: 1;
}
.icon {
    margin: 0px auto 10px;
}
.login-card p {
    margin-bottom: 8px;
}
@media (max-width: 767px) {
    body {
        overflow-y: auto;
    }
    .wrapper {
        padding-top: 30px;
    }
    .brand-box img {
        width: 90px;
    }
    .brand-title {
        font-size: 20px;
    }
    .login-grid {
        grid-template-columns: 2fr;
    }
    .icon {
        width: 46px;
        height: 44px;
        font-size: 22px;
        border-radius: 8px;
    }
    .brand-title {
        font-size: 16px;
    }
    .login-card {
        padding: 12px 9px;
        border-radius: 10px;
    }
    .login-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 0px;
    }
    .login-card {
        padding: 12px 9px;
        border-radius: 10px;
        width: 46%;
        margin: 2%;
    }
}
