* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #7b94a0;
}

.container {
    display: flex;
    background: white;
    width: 850px;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.left-section {
    flex: 1;
    position: relative;
    background: url('https://images.unsplash.com/photo-1609137144813-7d9921338f24?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8dHJhdmVsJTIwYW5kJTIwdG91cmlzbXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 20px;
}
.left-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.left-section h2 {
    position: relative;
    z-index: 1;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
    font-style: italic;
}

.right-section {
    flex: 1;
    background: #3f5469;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    color: white;
}

.right-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    background: #ffffff;
    color: #333;
}

button {
    width: 100%;
    background-color: #ffffff;
    color: #1e3a75;
    padding: 12px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

button:hover {
    background-color: #f0f0f0;
}

p {
    margin-top: 15px;
    font-size: 14px;
}

a {
    color: #ffffff;
    text-decoration: underline;
}
