/* Custom styles for the login part */
.login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.login-wrapper {
    width: 100%;
    max-width: 400px;
    margin: auto;
    padding: 20px;
}

.loginbox {
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.login-right-wrap {
    text-align: center;
}

.login-right-wrap h1 {
    margin-bottom: 20px;
}

.login-right-wrap .form-group {
    margin-bottom: 15px;
}

.login-right-wrap .btn {
    margin-top: 10px;
}

.login-or {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

.login-or .or-line {
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
    top: 50%;
    left: 0;
}

.login-or .span-or {
    background: #fff;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.dont-have {
    margin-top: 20px;
}

.login-wrapper .loginbox .login-left {
    align-items: center;
    background: linear-gradient(180deg, #3949ab, #2962ff);
    border-radius: 6px 0 0 6px;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    width: 400px;
    display: flex;
}

.login-wrapper .loginbox .login-right {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 40px;
    width: 100%;
}

.login-wrapper .loginbox .login-right .login-right-wrap {
    max-width: 100%;
    flex: 0 0 100%;
}

.login-wrapper .loginbox .login-right h1 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
}

.account-subtitle {
    color: #4c4c4c;
    font-size: 17px;
    margin-bottom: 1.875rem;
    text-align: center;
}

.login-wrapper .loginbox .login-right .forgotpass a {
    color: #a0a0a0;
}

.login-wrapper .loginbox .login-right .forgotpass a:hover {
    color: #333;
    text-decoration: underline;
}

.login-wrapper .loginbox .login-right .dont-have {
    color: #a0a0a0;
    margin-top: 1.875rem;
}

.login-wrapper .loginbox .login-right .dont-have a {
    color: #333;
}

.login-wrapper .loginbox .login-right .dont-have a:hover {
    text-decoration: underline;
}

.social-login {
    text-align: center;
}

.social-login > span {
    color: #a0a0a0;
    margin-right: 8px;
}

.social-login > a {
    background-color: #ccc;
    border-radius: 4px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    height: 32px;
    line-height: 32px;
    margin-right: 6px;
    text-align: center;
    width: 32px;
}

.social-login > a:last-child {
    margin-right: 0;
}

.social-login > a.facebook {
    background-color: #4b75bd;
}

.social-login > a.google {
    background-color: #fe5240;
}

.login-or {
    color: #a0a0a0;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: relative;
}

.or-line {
    background-color: #e5e5e5;
    height: 1px;
    margin-bottom: 0;
    margin-top: 0;
    display: block;
}

.span-or {
    background-color: #fff;
    display: block;
    left: 50%;
    margin-left: -20px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: 0;
    width: 42px;
}

/* Custom styles for the login part */
.container {
    padding: 20px;
}

.card {
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card-body {
    text-align: center;
}

/* Media Queries for Mobile Devices */
@media (max-width: 767px) {
    .login-wrapper {
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .loginbox {
        padding: 15px; /* Reduce padding for smaller screens */
    }

    .login-wrapper .loginbox .login-left,
    .login-wrapper .loginbox .login-right {
        width: 100%; /* Ensure full width on mobile */
        padding: 10px; /* Adjust padding for mobile */
    }

    .login-wrapper .loginbox .login-right h1 {
        font-size: 22px; /* Adjust font size for mobile */
    }

    .account-subtitle {
        font-size: 15px; /* Adjust font size for mobile */
    }

    .container {
        padding: 10px;
    }

    .card {
        padding: 15px;
    }
}