body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: rgb(253, 252, 252);
}

#eventbizlogo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#eventbizlogo img {
    width: 150px;
    height: 150px;
}

#why-eventbiz {
    display: flex;
    justify-content: left;
    align-items: center;
    font-size: 30px;
    font-weight: 600;
    margin-left: 140px;
    font-weight:700;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin-top: 30px;
    margin-bottom: 30px;
}

#box {
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
    width: 280px;
    height: 200px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

#box img {
    width: 100px;
    height: 80px;
    margin-bottom: 10px;
}

#box h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

#box p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
}

/* Form CSS */


.form {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

#left-view {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

#right-view {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 50%;
    height: 500px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

#left-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

#right-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 60%;
    height: 400px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin: 10px;
    padding: 10px;
}

#work {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

#signin-request {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

#left-view img {
    width: 600px;
    height: 600px;
    margin-top: 10px;
    margin-bottom: 10px;
}

label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 5px;
}

input {
    width: 100%;
    height: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    padding: 5px;
}

#bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#bottom p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

#create-account {
    width: 150px;
    height: 30px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#create-account:hover {
    background-color: #0056b3;
}