.login-container {
    margin: 20px;
    background-color: #222;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    min-height: calc(100vh - 40px);
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.login-left-panel {
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    position: relative;
    height: calc(100vh - 40px);
    background-color: rgba(0, 0, 0, 0.5); /* Black with 0.5 opacity */
    background-image: url("../image/login_bg_202505.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.login-right-panel {
    width: calc(50% - 50px);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    padding: 20px;
    position: relative;
    height: calc(100vh - 80px);
    justify-content: center;
}

.login-right-panel h2 {
    font-size: 24px;
    text-align: center;
    color: #999;
}

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

.login-right-panel .form-group input {
    width: 100%;
    height: 54px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 18px;
}

.login-right-panel button {
    background-color: #FFD700;
    color: black;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: 54px;
    font-size: 18px;
    font-weight: bold;
}

.login-right-panel button:hover {
    background-color: #ceaf00;
    transform: translateY(-2px);
}

.login-right-panel p {
    text-align: center;
    margin-top: 15px;
    color: #888;
}

.login-right-panel span{
    color: rgb(238, 99, 164);
    font-weight: bold;
    font-size: larger;
}

.login-right-panel a {
    color: #fff;
    text-decoration: none;
}

.login-right-panel hr {
    margin: 20px 0;
    border: 1px solid #666; 
    width: 100%;
}

.google-login,
.facebook-login,
.apple-login {
    background-color: #333;
    color: #fff;
    padding: 14px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    height: 54px;
    text-align: center;
    display: block;
    margin-top: 15px;
    text-decoration: none;
    box-sizing: border-box;
}

.google-login:hover,
.facebook-login:hover,
.apple-login:hover {
    background-color: #444;
}

.google-login svg,
.facebook-login svg,
.apple-login svg {
    vertical-align: middle;
    margin-right: 10px;
}
