body {
    background: #f0f4f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.h5-container {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.h5-header {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: #fff;
    padding: 40px 20px 30px;
    text-align: center;
}

.h5-header h1 {
    font-size: 22px;
    margin: 10px 0 5px;
}

.h5-header p {
    opacity: 0.9;
    margin: 0;
    font-size: 14px;
}

.h5-body {
    padding: 24px 20px;
}

.form-label {
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-label .required {
    color: #dc3545;
    margin-left: 2px;
}

.photo-upload {
    border: 2px dashed #ced4da;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.photo-upload.has-photo {
    border-color: #198754;
    background: #f4f9f6;
}

.photo-upload i {
    font-size: 36px;
    color: #adb5bd;
}

.photo-upload img {
    max-width: 140px;
    max-height: 180px;
    border-radius: 8px;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

.photo-upload .upload-text {
    color: #6c757d;
    font-size: 13px;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

.photo-upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 10;
}

.btn-submit {
    background: #198754;
    border-color: #198754;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
}

.btn-submit:hover {
    background: #146c43;
    border-color: #146c43;
}

.success-box {
    text-align: center;
    padding: 40px 20px;
}

.success-box i {
    font-size: 64px;
    color: #198754;
}

.success-box h2 {
    font-size: 20px;
    margin: 20px 0 10px;
}

.success-box p {
    color: #6c757d;
    font-size: 14px;
}

.footer-text {
    text-align: center;
    color: #adb5bd;
    font-size: 12px;
    padding: 20px;
}
