body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: 50px;
    margin-bottom: 50px;
}

.header {
    margin-top: 150px;
    text-align: center;
    margin-bottom: 20px;
}

.container {
    margin-top: -20px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    max-width: 750px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.info {
    width: 50%;
    padding-right: 30px;
}

.form {
    width: 50%;
    margin: 0 auto;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    text-align: center;
    color: #333;
}

input {
    width: 90%;
    padding: 10px;
    margin-left: 3%;
    margin-bottom: 15px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: red;
    outline: none;
}

button {
    margin-left: 25%;
    background-color: red;
    color: white;
    border: none;
    padding: 12px 15px;
    width: 50%;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.5s;
    font-weight: bold;
}

button:hover {
    background-color: white;
    color: red;
}

.btn-primary {
    margin-top: 20px;
    display: inline-block;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    transition: background 0.3s ease;
    margin-bottom: 200px;
}

.btn-primary:hover {
    background-color: #f4f4f4;
    color: red;;
}


p {
    color: red;
    font-weight: bold;
}

.info a {
    color: red;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        width: 90%;
    }

    .info, .form {
        width: 100%;
        padding: 0;
    }
}

.info p {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}