﻿/* css/signup.css - All original styles from ServiceAddressCheck.aspx */
.wizard-step {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.step-visible {
    margin: 20px 0;
}

.step-visible {
    display: block;
}

.step-hidden {
    display: none;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

    .logo-container img {
        max-width: 300px;
        height: auto;
    }

.form-group {
    margin-bottom: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#map {
    height: 400px;
    width: 100%;
    margin-top: 10px;
    border-radius: 5px;
}

.progress-label {
    font-weight: 600;
    font-size: 1.4em;
    margin: 0 0 30px;
    padding: 10px 15px;
    color: #333;
    background-color: #f1f4f8;
    border-radius: 6px;
    text-align: center;
    border-bottom: 3px solid #007bff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
    box-sizing: border-box;
}

.error-message, .availability-message, .no-service-message {
    font-weight: 500;
    font-size: 1.1em;
    line-height: 1.5;
    margin: 15px 0;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    white-space: normal;
    width: 100%;
    box-sizing: border-box;
}

.error-message {
    color: #721c24;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
}

.availability-message {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
}

.no-service-message {
    color: #fff;
    background-color: #dc3545;
    border: 1px solid #c82333;
}

.wizard-nav {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
}

.btn-primary {
    background-color: #007bff;
    color: white;
}

    .btn-primary:disabled {
        background-color: #ccc;
        cursor: not-allowed;
    }

    .btn-primary:hover:not(:disabled) {
        background-color: #0056b3;
    }

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

    .btn-secondary:hover {
        background-color: #5a6268;
    }

.form-group label {
    width: 150px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    width: 350px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

.form-group select {
    width: 366px;
}

.form-group.checkbox {
    align-items: flex-start;
}

    .form-group.checkbox label {
        width: auto;
        margin-left: 5px;
    }

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px 0;
}

.pricing-plan {
    width: 220px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
    padding-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

    .pricing-plan:hover {
        transform: translateY(-5px);
    }

    .pricing-plan h3 {
        margin: 0;
        padding: 15px 0;
        font-size: 1.5em;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
    }

    .pricing-plan .price {
        font-size: 1.8em;
        font-weight: bold;
        padding: 15px 0;
        color: #333;
    }

    .pricing-plan .select-btn {
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

        .pricing-plan .select-btn:hover {
            background-color: #0056b3;
        }

.basic h3 {
    background-color: #FFC107;
    color: #000;
}

.enhanced h3 {
    background-color: #DC3545;
    color: #FFF;
}

.ultra h3 {
    background-color: #28A745;
    color: #FFF;
}

.pricing-details {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 0;
}

    .pricing-details .section {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 15px;
    }

    .pricing-details h4 {
        font-size: 1.3em;
        margin: 0 0 15px 0;
        color: #333;
        border-bottom: 2px solid #007bff;
        padding-bottom: 5px;
    }

    .pricing-details li {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

.price-tag {
    font-weight: bold;
    color: #28a745;
}

.fcc-label-link {
    text-align: center;
    margin-top: 20px;
}

    .fcc-label-link a {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }

        .fcc-label-link a:hover {
            text-decoration: underline;
        }

.success-container {
    text-align: center;
    padding: 30px;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    margin: 20px 0;
}

    .success-container h3 {
        color: #155724;
        margin-bottom: 15px;
    }

    .success-container p {
        color: #155724;
        font-size: 1.1em;
    }
