﻿ body {
            font-family: Arial, sans-serif;
            margin: 0;
            background-color: #fff;
        }

        .container {
            width: 850px;
            margin: 0 auto;
            padding: 20px;
            border: 1px solid #ccc;
        }

        .header {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #c00000;
        }

            .header img {
                width: 70px;
                height: auto;
            }

            .header h1 {
                color: #c00000;
                font-size: 18px;
                margin: 0;
                text-transform: uppercase;
                font-weight: bold;
                font-family: 'Georgia', 'Times New Roman', serif;
            }

        h2 {
            text-align: center;
            font-size: 18px;
            margin: 20px 0 15px;
            text-transform: uppercase;
            font-weight: bold;
            color: #CD6133;
            font-family: 'Georgia', 'Times New Roman', serif;
        }

        .section {
            border: 1px solid #ccc;
            margin-top: 25px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 1px 1px 3px #eee;
        }

        .section-title {
            /*background-color: #d9e7f9;*/
            background-color: #00A8FF;
            color: #fff;
            padding: 10px;
            font-weight: bold;
            text-align: center;
            border-bottom: 1px solid #ccc;
            font-size: 14px;
            text-transform: uppercase;
        }

        .form-group {
            padding: 15px 20px;
            background-color: #f5faff;
        }

        .form-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 10px 12px;
        }

            .form-table td {
                vertical-align: top;
                width: auto;
            }

        label {
            font-weight: bold;
            display: inline-block;
            margin-bottom: 4px;
            font-size: 13px;
        }

        input[type="text"], input[type="email"], input[type="tel"], textarea, .input-text {
            width: 98%;
            padding: 6px 8px;
            font-size: 13px;
            border: 1px solid #999;
            border-radius: 8px;
            box-sizing: border-box;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

            input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus {
                border-color: #c00000;
                box-shadow: 0 0 5px rgba(192, 0, 0, 0.5);
                outline: none;
            }

        .checkbox {
            margin-right: 10px;
            font-size: 13px;
            vertical-align: middle;
        }

        .submit-btn {
            text-align: center;
            margin-top: 30px;
        }

            .submit-btn input, .submit-btn button, .submit-btn asp\:Button {
                background-color: #c00000;
                color: white;
                padding: 10px 25px;
                border: none;
                font-size: 16px;
                cursor: pointer;
                border-radius: 8px;
                font-weight: bold;
                text-transform: uppercase;
                transition: background-color 0.3s ease;
            }

                .submit-btn input:hover, .submit-btn button:hover, .submit-btn asp\:Button:hover {
                    background-color: #a00000;
                }

        ol {
            padding-left: 18px;
        }

            ol li {
                margin-bottom: 15px;
                font-size: 13px;
            }

        /*.disabled-btn {
            background-color: #ccc;
            cursor: not-allowed;
        }*/
        .disabled-btn {
            background-color: #ccc;
            color: #555;
            cursor: not-allowed;
            font-weight: bold;
            border: 1px solid #aaa;
            padding: 10px 20px;
        }


        .popup-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }

        .popup-content {
            background-color: white;
            padding: 20px 30px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            text-align: center;
        }

            .popup-content h3 {
                color: green;
                margin-bottom: 15px;
            }

            .popup-content p {
                color: red;
            }

            .popup-content #ClosePopupButton {
                padding: 10px 20px;
                background-color: #007bff;
                color: white;
                border: none;
                border-radius: 5px;
                cursor: pointer;
            }

                .popup-content #ClosePopupButton:hover {
                    background-color: #0056b3;
                }