334 lines
5.5 KiB
CSS
334 lines
5.5 KiB
CSS
.job-registration-page {
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
|
|
padding: 20px;
|
|
}
|
|
|
|
.job-registration-container {
|
|
max-width: 1000px;
|
|
margin: 0 auto;
|
|
background: white;
|
|
border-radius: 15px;
|
|
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
|
|
overflow: hidden;
|
|
}
|
|
|
|
.page-header {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
padding: 30px 40px;
|
|
position: relative;
|
|
}
|
|
|
|
.back-button {
|
|
background: rgba(255, 255, 255, 0.2);
|
|
color: white;
|
|
border: 1px solid rgba(255, 255, 255, 0.3);
|
|
padding: 8px 16px;
|
|
border-radius: 8px;
|
|
cursor: pointer;
|
|
font-size: 0.9rem;
|
|
transition: all 0.3s ease;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.back-button:hover {
|
|
background: rgba(255, 255, 255, 0.3);
|
|
border-color: rgba(255, 255, 255, 0.5);
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 2rem;
|
|
margin: 0 0 10px 0;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.page-header p {
|
|
font-size: 1.1rem;
|
|
margin: 0;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.registration-form {
|
|
padding: 40px;
|
|
}
|
|
|
|
.form-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 25px;
|
|
margin-bottom: 40px;
|
|
}
|
|
|
|
.form-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.form-group.full-width {
|
|
grid-column: 1 / -1;
|
|
}
|
|
|
|
.form-group label {
|
|
font-weight: 600;
|
|
color: #2d3748;
|
|
margin-bottom: 8px;
|
|
font-size: 0.95rem;
|
|
}
|
|
|
|
.form-group label.required::after {
|
|
content: ' *';
|
|
color: #e53e3e;
|
|
}
|
|
|
|
.form-group input,
|
|
.form-group select,
|
|
.form-group textarea {
|
|
padding: 12px 16px;
|
|
border: 2px solid #e2e8f0;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
transition: all 0.3s ease;
|
|
background: white;
|
|
}
|
|
|
|
.form-group input:focus,
|
|
.form-group select:focus,
|
|
.form-group textarea:focus {
|
|
outline: none;
|
|
border-color: #667eea;
|
|
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
|
}
|
|
|
|
.form-group input.error,
|
|
.form-group select.error,
|
|
.form-group textarea.error {
|
|
border-color: #e53e3e;
|
|
}
|
|
|
|
.form-group input::placeholder,
|
|
.form-group textarea::placeholder {
|
|
color: #a0aec0;
|
|
}
|
|
|
|
.form-group textarea {
|
|
resize: vertical;
|
|
min-height: 100px;
|
|
font-family: inherit;
|
|
}
|
|
|
|
.error-message {
|
|
color: #e53e3e;
|
|
font-size: 0.85rem;
|
|
margin-top: 5px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-actions {
|
|
display: flex;
|
|
gap: 15px;
|
|
justify-content: flex-end;
|
|
padding-top: 30px;
|
|
border-top: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.cancel-button,
|
|
.submit-button {
|
|
padding: 12px 24px;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: all 0.3s ease;
|
|
border: none;
|
|
min-width: 120px;
|
|
}
|
|
|
|
.cancel-button {
|
|
background: #f7fafc;
|
|
color: #4a5568;
|
|
border: 2px solid #e2e8f0;
|
|
}
|
|
|
|
.cancel-button:hover {
|
|
background: #edf2f7;
|
|
border-color: #cbd5e0;
|
|
}
|
|
|
|
.submit-button {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: 2px solid transparent;
|
|
}
|
|
|
|
.submit-button:hover:not(:disabled) {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.submit-button:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
transform: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
/* 모바일 반응형 */
|
|
@media (max-width: 768px) {
|
|
.job-registration-page {
|
|
padding: 10px;
|
|
}
|
|
|
|
.registration-form {
|
|
padding: 25px 20px;
|
|
}
|
|
|
|
.page-header {
|
|
padding: 25px 20px;
|
|
}
|
|
|
|
.page-header h1 {
|
|
font-size: 1.6rem;
|
|
}
|
|
|
|
.form-grid {
|
|
grid-template-columns: 1fr;
|
|
gap: 20px;
|
|
}
|
|
|
|
.form-actions {
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
.cancel-button,
|
|
.submit-button {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
/* 프로젝트 유형 관리 스타일 */
|
|
.project-type-container {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.project-type-container select {
|
|
flex: 1;
|
|
}
|
|
|
|
.project-type-actions {
|
|
display: flex;
|
|
gap: 4px;
|
|
}
|
|
|
|
.add-type-btn,
|
|
.remove-type-btn {
|
|
width: 32px;
|
|
height: 32px;
|
|
border: 2px solid #e2e8f0;
|
|
background: white;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 1.2rem;
|
|
font-weight: bold;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.add-type-btn {
|
|
color: #38a169;
|
|
border-color: #38a169;
|
|
}
|
|
|
|
.add-type-btn:hover {
|
|
background: #38a169;
|
|
color: white;
|
|
}
|
|
|
|
.remove-type-btn {
|
|
color: #e53e3e;
|
|
border-color: #e53e3e;
|
|
}
|
|
|
|
.remove-type-btn:hover {
|
|
background: #e53e3e;
|
|
color: white;
|
|
}
|
|
|
|
.add-project-type-form {
|
|
display: flex;
|
|
gap: 8px;
|
|
margin-top: 8px;
|
|
padding: 12px;
|
|
background: #f7fafc;
|
|
border-radius: 8px;
|
|
border: 1px solid #e2e8f0;
|
|
}
|
|
|
|
.add-project-type-form input {
|
|
flex: 1;
|
|
padding: 8px 12px;
|
|
border: 1px solid #cbd5e0;
|
|
border-radius: 4px;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.add-project-type-form button {
|
|
padding: 8px 16px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 0.9rem;
|
|
font-weight: 500;
|
|
cursor: pointer;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
.add-project-type-form button:first-of-type {
|
|
background: #38a169;
|
|
color: white;
|
|
}
|
|
|
|
.add-project-type-form button:first-of-type:hover {
|
|
background: #2f855a;
|
|
}
|
|
|
|
.add-project-type-form button:last-of-type {
|
|
background: #e2e8f0;
|
|
color: #4a5568;
|
|
}
|
|
|
|
.add-project-type-form button:last-of-type:hover {
|
|
background: #cbd5e0;
|
|
}
|
|
|
|
/* 태블릿 반응형 */
|
|
@media (max-width: 1024px) and (min-width: 769px) {
|
|
.job-registration-container {
|
|
margin: 20px;
|
|
max-width: none;
|
|
}
|
|
}
|
|
|
|
/* 모바일에서 프로젝트 유형 관리 */
|
|
@media (max-width: 768px) {
|
|
.project-type-container {
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
.project-type-actions {
|
|
justify-content: center;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.add-project-type-form {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.add-project-type-form button {
|
|
width: 100%;
|
|
}
|
|
} |