.reg_div {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reg_div h1 {
    text-align: center;
    color: #333;
}

.reg_div .package-options {
    display: flex;
    justify-content: space-between;
    margin-bottom: 67px;
}

.reg_div .package-option {
    flex: 1;
    margin: 0 10px;
    cursor: pointer;
}

.reg_div .package-card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: border-color 0.2s, background-color 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.reg_div .package-card.selected {
    border-color: #007BFF;
    background-color: #e7f0ff;
}

.reg_div .package-option input[type="radio"] {
    display: none;
}

.reg_div h2 {
    margin-bottom: 10px;
}

.reg_div .description {
    color: #555;
    margin: 10px 0;
}

.reg_div .price {
    font-size: 1.5em;
    color: #cc0100;
}

.reg_div .features {
    list-style-type: none;
    padding: 0;
    margin-top: auto;
    color: #333;
}

.reg_div .features li {
    margin: 5px 0;
}

/* Updated styles for Select Package button */
.reg_div .select-button {
    margin-top: 15px;
    padding: 10px;
    background-color: #cc0100ad; /* Default color */
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s;
}

.reg_div .select-button.selected {
    background-color: #cc0100; /* Color when selected */
}

.reg_div .select-button:hover {
    background-color: #cc0100; /* Keep same hover color when selected */
}

.reg_div .form-group {
    margin-bottom: 15px;
}

.reg_div label {
    display: block;
    margin-bottom: 5px;
    color: #555;
}

.reg_div input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.reg_div input:focus {
    border-color: #007BFF;
    outline: none;
}

.reg_div button {
    width: 100%;
    padding: 10px;
    background-color: #cc0100;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}

.reg_div button:hover {
    background-color: #cc0100;
}
