* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    background: #f9fafb;
    color: #20242f;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c0c4c9;
    border-bottom: 2px solid #c0c4c9;
    border-radius: 0.25rem;
    font-size: 16px;
    transition: all 0.3s;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}
.btnsubmit {
    background-color: #13aa52;
    border: 3px solid #148e47;
    box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    outline: none;
    outline: 0;
    padding: 10px 25px;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}
.row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.column {
    flex: 1;
}

.cb_errorfld {
    color: #dc3545;
    font-size: 14px;
    margin-top: 6px;
}

.btn {
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

.confirmation-message {
    display: none;
    text-align: center;
    padding: 20px;
    background: #d4edda;
    color: #155724;
    border-radius: 8px;
    font-size: 18px;
    margin-top: 20px;
}

/* Field size classes */
.cb_inptsmall { max-width: 40%; }
.cb_inptmedium { max-width: 70%; }
.cb_inptfull { width: 100%; }

hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 30px 0;
}