
/* 
    Created on : 17.07.2024, 16:29:58
    Author     : it
*/

body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #e9b07975;
        }
        
      

        form {
            max-width: 600px;
            margin: auto;
            padding-left: 20px;
            padding-right:  40px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background-color: #d1cfcd;
        }

        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

         select, textarea, button {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }
        input[type='text'],input[type='email'],input[type='date'],input[type='button'],input[type='tel'],input[type='number'] {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        button {
            background-color: #4CAF50;
            width: 100%;
            color: white;
            border: none;
            cursor: pointer;
        }

        button:hover {
            background-color: #45a049;
        }
        .hidden {
            display: none;
        }
        .inline {
            width: unset;
            margin: 0 0.5em 0 0;
            vertical-align: middle;
        }
        input[type='checkbox'] + label {
        display: inline-block;
        width: 50%
}