body {
    font-family: Arial, sans-serif;
    background: #e8f3ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    display: flex;
    width: 950px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 25px #aee0ff;
}

.form-box {
    width: 60%;
    padding: 50px;
}

.right-box {
    width: 40%;
    background: linear-gradient(135deg, #4cc3ff, #0aa2ff);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

input, select, textarea {
    width: 100%;
    padding: 14px;
    margin-top: 12px;
    border-radius: 30px;
    border: 1px solid #bcdcff;
    outline: none;
    font-size: 15px;
}

textarea {
    border-radius: 15px;
    height: 90px;
}

button {
    width: 100%;
    padding: 14px;
    margin-top: 25px;
    border-radius: 30px;
    border: none;
    background: #1da1ff;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: .2s;
}

button:hover {
    background: #0b8de3;
}

.title {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}
