#login-page {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    overflow: hidden;
}

.login-page-left {
    width: 60%;
    background-color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.login-page-left img {
    width: 60%;
    z-index: 999;
}

.login-page-right {
    width: 40%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.login-page-right h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.login-page-right form {
    display: flex;
    width: 90%;
    flex-direction: column;
    z-index: 99;
    border-radius: 10px;
}

.login-page-right input {
    margin: 1rem 0;
    height: 30px;
}

.login-btn {
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px 0;
}


/* main page */

#home-page {
    display: flex;
    width: 100vw;
    height: 100vh;
    align-items: center;
    overflow: hidden;
}

.home-page-left {
    width: 60%;
    background-color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}



.login-page-right {
    width: 40%;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card {
    background-color: black;
    color: white;
}

.row {
    text-align: center;
}