body {
    background-color: #121212;
    overflow-x: hidden;
}

.login-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
}

.login-image {
    flex: 1 1 60%;
    background: url('../images/main.webp') no-repeat center center;
    background-size: cover;
    min-height: 100vh;
}

.right-form {
    flex: 1 1 40%;
    max-width: 35%;
    background: url('../images/main-bg.webp');
    background-size: cover;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-card {
    background: #111;
    color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
    width: 100%;
    max-width: 70%;
}

.top-right-image {
    position: absolute;
    top: 2%;
    right: 5%;
    width: 100px;
    z-index: 1;
}

.toggle-password {
    position: absolute;
    right: 4%;
    bottom: 12%;
    cursor: pointer;
}

@media (max-width: 768px) {
    .login-image {
        display: none;
    }

    .login-card {
        max-width: 90%;
    }

    .right-form {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .top-right-image {
        width: 80px;
        top: 2%;
        right: 5%;
    }
}
