.custom-form-body {
    background-color: #f3f4f6;
    display: flex;
    justify-content: center;
    align-items: center;
 /*   min-height: 100vh;	*/
    font-family: Arial, sans-serif;
}

.custom-form-container {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 100%;
}

.custom-form-title {
    text-align: center;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.custom-form {
    display: flex;
    flex-direction: column;
}

.custom-form-label {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.3rem;
		text-align: left;
}

.custom-form-label-blue {
	color: blue;
}

.custom-form-label-red {
	color: red;
	font-weight: bold;

}

.custom-form-input, .custom-form-textarea {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.custom-form-textarea-height {
	height: 200px;
}

.custom-form-button {
    background-color: #4f46e5;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
.custom-form-button:hover {
    background-color: #4338ca;
}

.custom-form-end-button {
    background-color: #e54f46;
    color: white;
    padding: 0.75rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

