* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
}

.registration-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 15px;
}

.registration-card {
    width: 100%;
    max-width: 650px;
    background: #ffffff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.registration-header {
    text-align: center;
    margin-bottom: 30px;
}

.church-logo {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #0d6efd;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.registration-header h2 {
    margin-bottom: 8px;
    font-weight: 700;
}

.registration-header p {
    color: #6c757d;
    margin: 0;
}

.form-label {
    font-weight: 600;
}

.form-label span {
    color: red;
}

.form-control,
.form-select {
    min-height: 48px;
    border-radius: 8px;
}

textarea.form-control {
    min-height: 100px;
}

.btn-primary {
    min-height: 50px;
    border-radius: 8px;
    font-weight: 600;
}

.image-preview {
    text-align: center;
}

.preview-image {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #f1f1f1;
}

@media (max-width: 576px) {

    .registration-card {
        padding: 25px 20px;
    }

    .registration-wrapper {
        padding: 15px;
    }

}