@charset "utf-8";

/* 아이디/비밀번호 찾기 스타일 - 모던 로그인 스타일 기반 */

/* Reset & Base */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f9fafb;
    color: #374151;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.space-x-3 > * + * {
    margin-left: 0.75rem;
}

.space-x-4 > * + * {
    margin-left: 1rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.space-y-4 > * + * {
    margin-top: 1rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.p-4 {
    padding: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.pb-4 {
    padding-bottom: 1rem;
}

.pt-4 {
    padding-top: 1rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.w-full {
    width: 100%;
}

.max-w-md {
    max-width: 28rem;
}

.h-12 {
    height: 3rem;
}

.text-center {
    text-align: center;
}

.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-900 {
    color: #111827;
}

.text-indigo-600 {
    color: #522F14;
}

.bg-white {
    background-color: #ffffff;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.border-0 {
    border-width: 0;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.hover\:text-gray-700:hover {
    color: #374151;
}

/* Card Styles */
.card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.card-description {
    color: #6b7280;
    margin: 0;
}

.card-content {
    /* Card content styles handled by space-y-4 */
}

/* Form Elements */
.label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    font-size: 1rem;
    transition: all 0.15s ease-in-out;
    background-color: #ffffff;
}

.input:focus {
    outline: none;
    border-color: #522F14;
    /* box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1); */
}

.input::placeholder {
    color: #9ca3af;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: #522F14;
    color: #ffffff;
}
.btn-outline {
    background-color: #ffffff;
    color: #374151;
    border-color: #d1d5db;
}

.btn-outline:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.btn-link {
    color: #522F14;
    text-decoration: none;
    font-weight: 500;
}

.btn-link:hover {
    color: #4338ca;
    text-decoration: underline;
}

/* Separator */
.separator {
    height: 1px;
    background-color: #e5e7eb;
}

/* Form Info Box */
.form-info {
    border-radius: 0.5rem;
    padding: 0.75rem;
    color: #522F14;
}

/* Captcha Area */
.captcha-area {
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.captcha-area img {
    margin-bottom: 0.5rem;
    border-radius: 0.25rem;
}

.captcha-area input {
    margin-top: 0.5rem;
}

/* Bottom Link Box */
.bottom-link-box {
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.875rem;
    padding-top: 1rem;
    align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .max-w-md {
        max-width: 100%;
        margin: 0 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .text-3xl {
        font-size: 1.5rem;
    }

    .h-12 {
        height: 2.75rem;
    }

    .bottom-link-box {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .p-4 {
        padding: 0.75rem;
    }

    .card {
        padding: 1rem;
        border-radius: 0.5rem;
    }

    .text-2xl {
        font-size: 1.25rem;
    }

    .mb-8 {
        margin-bottom: 1.5rem;
    }

    .space-y-4 > * + * {
        margin-top: 0.75rem;
    }
}