form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    margin-right: auto;
}

label {
    display: inline-block;
    width: 300px; /* Adjust width as needed */
    text-align: right;
    margin-right: 10px;
    color: #0099cc;
}

input {
    margin-bottom: 10px;
    font-size: 2em;
    height: 40px;
    border: 1px solid #0099cc; /* Added solid border */
    width: 400px;
}

    input:focus {
        border: 2px solid #0099cc;
        outline: none;
    }

textarea {
    border: 1px solid #0099cc;
}
    textarea:focus {
        border: 2px solid #0099cc;
        outline: none;
    }

.input-button {
    background-color: purple;
    color: white;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    width: auto;
    display: inline-block;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

