* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f4f4f4;
}

.container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 20px;
}
.logo {
    max-width: 100px;
    margin-bottom: 10px;
}

h1 {
    font-size: 24px;
    color: #333;
}

.content {
    display: flex;
    flex-wrap: row;
    align-items: center;
    justify-content: center;
    /* justify-content: space-between; */
}

.form-container, .investment-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

.form-container {
    flex: 0 0 60%;
    margin-top: 20px;
}
.form-container2, .investment-details {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid lightgray;
}

.form-container2 {
    flex: 0 0 60%;
    margin-top: 20px;
}

.investment-details {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    width: 100%;
    height: 100%;
    /* max-width: 500px; */
}

h2 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #333;
}

.input-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: #555;
}

input[type="email"],
input[type="text"],
input[type="password"],
input[type="number"],
input[type="tel"] {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #555;
}

.consent-text {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
    text-align: center;
}

.investment-details p {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}

strong {
    font-size: 20px;
    color: #000;
}
@media screen and (max-width: 650px){
    .content{
        display: flex;
        flex-direction: column;
    }
}
hr{
    height: 1px;
}
.input-error{
    color: red;
    font-size: 14px;
}
.input-main-error{
    display: none;
    text-align: center;
    color: red;
    font-size: 14px;
    align-items: center;
    justify-content: center;
}
.head-text-container{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}