.wlcy-login-wrap {
    max-width: 450px;
    padding: 30px;
    margin: 40px auto;
    border: 1px solid #ddd;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.wlcy-login-wrap h3 {
    margin-top: 0;
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
    text-align: center;
    border-bottom: 3px solid #0073aa;
    padding-bottom: 15px;
}

.wlcy-login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.wlcy-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.wlcy-form-group label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.wlcy-input {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
    box-sizing: border-box;
}

.wlcy-input:focus {
    outline: none;
    border-color: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

.wlcy-btn {
    padding: 14px 24px;
    background: #0073aa;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 10px;
    width: auto;
    min-width: 150px;
}

.wlcy-btn:hover {
    background: #005a87;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.3);
}

.wlcy-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
    transform: none;
    box-shadow: none;
}

.wlcy-login-result {
    min-height: 50px;
}

.loading {
    color: #0073aa;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
}

.loading::after {
    content: '...';
    animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.error {
    color: #dc3232;
    font-weight: 600;
    padding: 15px;
    background: #fee;
    border-left: 4px solid #dc3232;
    border-radius: 6px;
    margin-top: 10px;
}

.success {
    color: #0073aa;
    font-weight: 600;
    padding: 15px;
    background: #f0f8ff;
    border-left: 4px solid #0073aa;
    border-radius: 6px;
    margin-top: 10px;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success::before {
    content: '✓ ';
    font-size: 18px;
    font-weight: 700;
}

/* 반응형 디자인 */
@media (max-width: 500px) {
    .wlcy-login-wrap {
        margin: 20px 15px;
        padding: 20px;
    }

    .wlcy-login-wrap h3 {
        font-size: 20px;
    }

    .wlcy-input {
        padding: 10px 12px;
        font-size: 14px;
    }

    .wlcy-btn {
        padding: 12px 20px;
        font-size: 15px;
    }
}
