body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.register-page {
    display: flex;
    height: calc(100vh - 120px); /* Adjust for header + footer height */
    position: relative;
}

/* Left background image */
.image-side {
    flex: 1;
    background-image: url('../image/login_register.png');
    background-size: cover;
    background-position: center;
}

/* Form overlay on the right */
.form-container {
    width: 40%;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 40px 0 0 40px; /* Rounded shape on left */
    padding: 40px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
}

label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.login-btn {
    width: 100%;
    background-color: #FFD700;
    border: none;
    padding: 12px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 15px;
}

.login-btn:hover {
    background-color: #e6c200;
}

.register-link {
    text-align: center;
    margin-top: 10px;
}
