* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #202124;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.form-wrapper {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* Header Banner */
.header-banner {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    overflow: hidden;
}

.header-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Form Content */
.form-content {
    padding: 30px 40px;
}

/* Form Login */
.form-login {
    padding: 30px 0px;
}

.link-login {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.link-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    
}

.form-register {
    display: block;
}

.form-title {
    font-size: 32px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 10px;
    border-bottom: 2px solid #dc2626;
    padding-bottom: 10px;
}

.description {
    margin: 20px 0;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    color: #5f6368;
}

.description p {
    margin-bottom: 10px;
}

.description .link {
    color: #1a73e8;
    text-decoration: none;
}

.description .link:hover {
    text-decoration: underline;
}

/* Form Sections */
.form-section {
    margin: 15px 0;
    padding: 20px 0;

}

.section-title {
    font-size: 18px;
    font-weight: 400;
    color: #c91a24;
    margin-bottom: 15px;
}

/* Form Groups */
.form-group {
    margin: 25px 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: #202124;
    margin-bottom: 8px;
    font-weight: 400;
}

.form-group input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #dadce0;
    font-size: 14px;
    color: #202124;
    background: transparent;
    transition: border-color 0.2s;
}

.form-group input:focus {
    outline: none;
    border-bottom: 2px solid #1a73e8;
}

.form-group input::placeholder {
    color: #5f6368;
}

/* Floating Label Style */
.form-group.floating-label {
    position: relative;
    margin: 25px 0;
}

.form-group.floating-label label {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 16px;
    color: #5f6368;
    pointer-events: none;
    transition: all 0.3s ease;
    background: white;
    padding: 0 2px;
    margin: 0;
}

.form-group.floating-label input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #dadce0;
    font-size: 16px;
    color: #202124;
    background: transparent;
    transition: border-color 0.2s;
}

.form-group.floating-label input:focus {
    outline: none;
    border-bottom: 2px solid #1a73e8;
}

/* Floating label animation when focused or has content */
.form-group.floating-label input:focus + label,
.form-group.floating-label input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 12px;
    color: #1a73e8;
    font-weight: 400;
}

/* Keep label color gray when not focused but has content */
.form-group.floating-label input:not(:focus):not(:placeholder-shown) + label {
    color: #5f6368;
}

/* Radio Groups */
.radio-group {
    margin: 15px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: #202124;
}

.radio-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #1a73e8;
}

.radio-option:hover {
    background-color: #f8f9fa;
}

/* Horizontal Radio Options */
.radio-group.horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-option-inline {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: #202124;
    /* border: 1px solid #dadce0; */
    border-radius: 4px;
    transition: all 0.2s;
}

.radio-option-inline:hover {
    background-color: #f8f9fa;
    border-color: #1a73e8;
}

.radio-option-inline input[type="radio"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #1a73e8;
}

.radio-option-inline input[type="radio"]:checked + span {
    font-weight: 500;
    color: #1a73e8;
}

/* Checkbox Options */
.checkbox-option {
    display: flex;
    align-items: center;
    padding: 10px 0;
    cursor: pointer;
    font-size: 14px;
    color: #202124;
}

.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    cursor: pointer;
    accent-color: #1a73e8;
}

/* Bank Info */
.bank-info {
    margin: 30px 0;
    margin-top: -30px;
    padding: 20px;
    background: #e8f0fe;
    border-left: 4px solid #1a73e8;
    border-radius: 4px;
}

.bank-info h3 {
    font-size: 16px;
    color: #1a73e8;
    margin-bottom: 15px;
}

.bank-info p {
    font-size: 14px;
    color: #202124;
    margin: 8px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.bank-info strong {
    font-weight: 500;
    margin-right: 8px;
}

/* Copy Button */
.btn-copy {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    margin-left: 8px;
}

.btn-copy:hover {
    background: #1557b0;
}

.btn-copy:active {
    background: #1248a0;
    transform: scale(0.95);
}

.btn-copy svg {
    width: 16px;
    height: 16px;
}

/* QR Info */
.qr-info {
    margin: 30px 0;
    margin-top: -30px;
    padding: 20px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.qr-info h3 {
    font-size: 16px;
    color: #2e7d32;
    margin-bottom: 15px;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.qr-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border: 2px solid #4caf50;
    border-radius: 8px;
    padding: 10px;
    background: white;
    margin-bottom: 15px;
}

.qr-note {
    font-size: 14px;
    color: #2e7d32;
    margin: 5px 0;
}

.qr-note strong {
    font-weight: 500;
}

/* Notes Section */
.notes-section {
    margin: 30px 0;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.notes-section h3 {
    font-size: 16px;
    color: #856404;
    margin-bottom: 15px;
}

.notes-section ul {
    padding-left: 20px;
}

.notes-section li {
    font-size: 14px;
    color: #856404;
    margin: 8px 0;
}

/* Links */
.more-link,
.clear-link {
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    margin-top: 10px;
}

.more-link:hover,
.clear-link:hover {
    text-decoration: underline;
}

/* Submit Button */
.btn-submit, .link-login {
    background: #e42927;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
    margin-right: 15px;
    font-weight: bold;
    text-decoration: none;
}

.btn-submit:hover {
    background: #1557b0;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.btn-submit:active {
    background: #1248a0;
}

/* Form Footer */
.form-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #dadce0;
    text-align: center;
    font-size: 12px;
    color: #5f6368;
}

.form-footer p {
    margin-bottom: 15px;
}

.form-footer .link {
    color: #1a73e8;
    text-decoration: none;
}

.form-footer .link:hover {
    text-decoration: underline;
}

.google-forms {
    font-size: 14px;
    color: #5f6368;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0px;
    }

    .form-content {
        padding: 20px;
    }

    .form-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 18px;
    }

    .form-group input {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .form-content {
        padding: 15px;
    }

    .form-title {
        font-size: 20px;
    }

    .btn-submit {
        width: 100%;
        margin-bottom: 10px;
    }

    .clear-link {
        display: block;
        text-align: center;
    }
    .form-wrapper{
        border-radius: 0;
    }
}
