.card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    display: flex;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    overflow: hidden;
    width: 50vw;
    max-width: 100%;
    height: 50vh;
}
.card-image{
    width: 50%;
}
.card-image img {
    height: 50vh;
    width: 100%;
    object-fit: cover;
}

.card-form {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}
.card-form-container{
    width: 50%;
    display: flex;
    justify-content: center;  /* horizontal centering */
    align-items: center;      /* vertical centering */
}
.card-form h2 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.card-form input {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/*.card-form button {*/
/*    padding: 10px;*/
/*    background: linear-gradient(to bottom, #f9d423, #f39c12);*/
/*    border: none;*/
/*    border-radius: 4px;*/
/*    color: #000;*/
/*    font-weight: bold;*/
/*    cursor: pointer;*/
/*    transition: background 0.3s ease;*/
/*}*/

/*.card-form button:hover {*/
/*    background: linear-gradient(to bottom, #f39c12, #f9d423);*/
/*}*/