/* ========================================== Login Page ========================================= */

.login-bg {
    margin: 0;
    padding: 0;
    height: 100vh;
    font-family: "Inter", sans-serif;
    background: url("../images/login-bg.jpg") no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    width: 100%;
    max-width: 400px;
    background: rgb(232 244 242);
    border-radius: 12px;
    padding: 20px 35px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.6s ease-in-out;
    text-align: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-container img.logo {
    width: 70px;
    margin-bottom: 12px;
}

.login-container h3 {
    margin: 0;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.login-container small {
    display: block;
    margin-bottom: 25px;
    color: #666;
    font-size: 14px;
}

.login-container .form-control {
    width: 100%;
    border-radius: 5px;
    padding: 22px 14px;
    border: 2px solid #9cbdcc !important;
    margin-bottom: 18px;
    font-size: 15px;
    transition: border 0.2s;
}

.login-container .form-control:focus {
    border-color: rgb(232 244 242);
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.login-container .btn-primary {
    width: 100%;
    background: linear-gradient(90deg, #42639f, #75b0a5);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.login-container .btn-primary:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.login-container .btn-secondary {
    width: 100%;
    background: none;
    color: #333;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.password-wrapper {
    position: relative;
    width: 100%;
}

.password-wrapper input {
    width: 100%;
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.swal-popup {
    font-size: 1.3rem !important;
}

.swal-title {
    font-weight: 600 !important;
}

.img-content-size-1 {
    height: 120px;
    width: 120px;
}

.img-content-size-1 img {
    width: 120px;
    height: 120px;
}

#imageprv1 {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #eeefef;
    border: 1px solid #666;
    overflow: hidden;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}

.common-fram {
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: #eeefef;
    border: 1px solid #666;
    overflow: hidden;
    text-align: center;
    line-height: 30px;
    font-size: 15px;
}

.profile-image {
    width: 50px;
    height: 50px;
}

#wrapper {
    margin: -1px 0 0 220px;
    padding: 0;
    background: #f1f3f6;
    border-left: 1px solid #eaeaea;
    transition: margin .4s ease 0s;
    position: relative;
    min-height: 100%;
}

#menu {
    width: 220px;
    bottom: 0;
    float: left;
    left: 0;
    position: absolute;
    top: 62px;
    transition: margin .4s ease 0s;
}

#logo {
    float: left;
    width: 220px;
    background-color: #34495e;
    padding: 18px 10px 18px 18px;
    height: 56px;
    text-align: center;
}

/* ========================================== Login Page ========================================= */