@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes buttonFlash {
    0% {
        background-color: transparent;
        color: #214376;
    }

    50% {
        background-color: #66A7F2;
        color: #FFFFFF;
    }

    100% {
        background-color: transparent;
        color: #214376;
    }
}

.realmodel-bg {
    background: linear-gradient(180deg,
            #2E4C78 12%,
            #41587B 23%,
            #7A91B3 45%,
            #EBF3FE 81%,
            #FFFFFF 100%);
    width: 100%;
    padding: 120px 0 200px;
}

.realmodel-stick {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 75px;
    background-color: #E8F1FF;
    border-radius: 5px;
    z-index: 1000;
}

.realmodel-wrapper {
    width: 100%;
    max-width: 1400px;
    margin: 120px auto 0;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
}

.realmodel-wrapper .text-area {
    flex-shrink: 0;
    text-align: right;
    line-height: 1.2;
}

.realmodel-wrapper .title {
    font-family: 'Dream Orphans', sans-serif;
    font-size: 128px;
    font-weight: normal;
    color: white;
}

.realmodel-wrapper .title span {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    display: block;
    margin-top: 12px;
    color: white;
}

.realmodel-wrapper .gallery {
    position: relative;
    display: flex;
    gap: 10px;
    height: 400px;
    animation: slideInFromRight 1.2s ease-out;
}

.realmodel-wrapper .column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.realmodel-wrapper .column img {
    object-fit: cover;
    border-radius: 10px;
    width: 100%;
}

.realmodel-wrapper .col1 {
    width: 150px;
}

.realmodel-wrapper .col2 {
    width: 300px;
}

.realmodel-wrapper .col3 {
    width: 150px;
}

.realmodel-wrapper .col4 {
    width: 210px;
}

.realmodel-wrapper .col5 {
    width: 290px;
}

.realmodel-wrapper .h100 {
    height: 100%;
}

.realmodel-wrapper .h55 {
    height: 55%;
}

.realmodel-wrapper .h45 {
    height: 45%;
}

.realmodel-description {
    text-align: center;
    margin-top: 100px;
    padding: 0 40px;
}

.realmodel-description .description-subtitle {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.realmodel-description .description-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #214376;
    margin: 0;
}

.model-application-section {
    width: 100%;
    padding: 200px 0 100px;
}

.model-application-form {
    min-width: 1200px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.form-title {
    font-family: 'Pretendard', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 40px 0;
}

.form-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    gap: 300px;
}

.form-group.textarea-group {
    align-items: flex-start;
}

.form-group label {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333333;
    min-width: 120px;
    margin-top: 12px;
    flex-shrink: 0;
}

.form-group input[type="text"],
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    background-color: white;
    box-sizing: border-box;
}

.form-group input[type="text"]::placeholder,
.form-group textarea::placeholder {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: #9CA3AF;
}

.form-group select {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 100;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    appearance: none;
}

.form-group textarea {
    min-height: 120px;
    resize: none;
}

.phone-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    flex: 1;
}

.phone-group input[type="text"] {
    width: 120px;
    flex: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 100;
    margin-left: 20px;
}

.checkbox-label input[type="checkbox"] {
    accent-color: #000000;
}

.radio-group {
    display: flex;
    gap: 20px;
    flex: 1;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    accent-color: #000000;
}

.file-upload-container {
    flex: 1;
}

.file-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.file-select-btn {
    padding: 12px 24px;
    background-color: #6B7280;
    color: white;
    border: none;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 120px;
}

.file-select-btn:hover {
    background-color: #4B5563;
}

.file-name {
    font-size: 14px;
    color: #6B7280;
    margin-left: 12px;
}

.file-description {
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 100;
    color: #000000;
    line-height: 1.5;
}

.file-description p {
    margin: 4px 0;
}

.privacy-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
}

.privacy-header>label:first-child {
    font-family: 'Pretendard', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #333333;
}

.privacy-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 15px;
    font-weight: 100;
}

.privacy-agree input[type="checkbox"] {
    accent-color: #000000;
}

.privacy-content {
    background-color: white;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    padding: 24px;
    font-family: 'Pretendard', sans-serif;
    font-size: 14px;
    font-weight: 200;
    color: #000000;
    line-height: 1.5;
    margin-bottom: 30px;
}

.privacy-item {
    margin-bottom: 16px;
}

.privacy-item strong {
    color: #000000;
    display: block;
    margin-bottom: 8px;
}

.privacy-item p {
    margin: 4px 0;
}

.submit-btn {
    min-width: 298px;
    min-height: 48px;
    padding: 12px 24px;
    background-color: white;
    color: #214376;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    margin: 40px 0 0 auto;
    display: block;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #f3f4f6;
}

.submit-btn.active {
    background-color: #66A7F2;
    color: #FFFFFF;
    border-color: #66A7F2;
    animation: none;
}

.submit-btn.active:hover {
    background-color: #5590d1;
}