﻿﻿.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 70%;
    max-width: 900px;
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.side {
    width: 45%;
}

#side1 h3 {
    font-size: 2em;
    color: #333;
}

#side2 h3 {
    font-size: 1.8em;
    color: #333;
    margin-bottom: 10px;
}

#side2 p {
    font-size: 1em;
    color: #777;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 10px;
    font-size: 1em;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

.btn-container {
    display: flex;
    justify-content: center;
}

.btn-warning {
    background-color: #ffcc00;
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-warning:hover {
        background-color: #e6b800;
    }

.error-message {
    color: green;
    font-size: 0.9em;
    margin-top: 5px;
}
