/* Blank Page Custom Styles */

.blank-content {
    padding: 20px 0;
}

.blank-content .page-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.blank-content .page-header h1 {
    margin-top: 0;
    color: #333;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
}

.blank-content .page-header .lead {
    color: #666;
    font-size: 18px;
    font-weight: 300;
}

.blank-content .content-section {
    margin-bottom: 40px;
}

.blank-content .content-section h2 {
    color: #333;
    margin-bottom: 20px;
    border-left: 4px solid rgb(128,193,189);
    padding-left: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.blank-content .content-section h3 {
    color: #555;
    margin-bottom: 15px;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
}

.blank-content .content-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.blank-content .content-section ul {
    margin-bottom: 20px;
}

.blank-content .content-section li {
    margin-bottom: 5px;
    color: #666;
}

.blank-content .btn {
    margin: 5px;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.blank-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Custom content blocks */
.content-block {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}

.content-block.primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.content-block.secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
}

.content-block.success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

/* Card styles */
.custom-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.custom-card:hover {
    transform: translateY(-5px);
}

.custom-card .card-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 10px 10px 0 0 !important;
    font-weight: 600;
}

/* Image styles */
.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* Form styles */
.custom-form .form-group {
    margin-bottom: 20px;
}

.custom-form .form-control {
    border-radius: 25px;
    padding: 12px 20px;
    border: 2px solid #e9ecef;
    transition: border-color 0.3s ease;
}

.custom-form .form-control:focus {
    border-color: rgba(128,193,189);
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .blank-content {
        padding: 15px 0;
    }
    
    .blank-content .page-header h1 {
        font-size: 28px;
    }
    
    .blank-content .content-section {
        margin-bottom: 30px;
    }
    
    .content-block {
        padding: 20px;
    }
    
    .blank-content .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .blank-content .page-header h1 {
        font-size: 24px;
    }
    
    .blank-content .content-section h2 {
        font-size: 20px;
    }
} 