/* student/student.css */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');

body { 
    background-color: #f4f7f6; 
    font-family: 'Pretendard', sans-serif; 
    padding: 40px 20px; 
    display: flex; 
    justify-content: center; 
}

.form-container { 
    width: 100%; 
    max-width: 500px; 
    background: #fff; 
    padding: 40px; 
    border-radius: 16px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); 
}

h2 { 
    text-align: center; 
    color: #111827; 
    margin-bottom: 30px; 
    font-weight: 700; 
    letter-spacing: -0.5px;
}

.input-group { margin-bottom: 20px; }

label { 
    display: block; 
    font-size: 0.85rem; 
    color: #4b5563; 
    margin-bottom: 8px; 
    font-weight: 600; 
}

.input-field { 
    width: 100%; 
    padding: 14px; 
    border: 1.5px solid #e5e7eb; 
    border-radius: 10px; 
    box-sizing: border-box; 
    font-size: 1rem; 
    transition: all 0.3s ease;
}

.input-field:focus { 
    outline: none; 
    border-color: #2563eb; 
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1); 
}

/* 버튼 영역 */
.btn-area { 
    margin-top: 35px; 
    display: flex; 
    gap: 10px; 
}

.btn-area button, .btn-area a { 
    flex: 1;
    padding: 15px; 
    cursor: pointer; 
    text-decoration: none; 
    border-radius: 10px; 
    border: none; 
    font-weight: 600; 
    text-align: center; 
    transition: background 0.2s;
}

.submit { background: #2563eb; color: white; }
.submit:hover { background: #1d4ed8; }

.reset { background: #e5e7eb; color: #374151; }
.reset:hover { background: #d1d5db; }

.cancel { background: #f3f4f6; color: #6b7280; border: 1px solid #e5e7eb; }
.cancel:hover { background: #e5e7eb; }